wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_privacy_exports_dir › WordPress Function

Od4.9.6
Przestarzałyn/a
wp_privacy_exports_dir ( Brak parametrów )
Zobacz:
Powrót:
  • (string) Exports directory.
Zdefiniowane na:
Codex:

Returns the directory used to store personal data export files.



Źródło

function wp_privacy_exports_dir() {
	$upload_dir  = wp_upload_dir();
	$exports_dir = trailingslashit( $upload_dir['basedir'] ) . 'wp-personal-data-exports/';

	/**
	 * Filters the directory used to store personal data export files.
	 *
	 * @since 4.9.6
	 * @since 5.5.0 Exports now use relative paths, so changes to the directory
	 *              via this filter should be reflected on the server.
	 *
	 * @param string $exports_dir Exports directory.
	 */
	return apply_filters( 'wp_privacy_exports_dir', $exports_dir );
}