wp_privacy_exports_dir filter-hook . WP 4.9.6
Filters the directory used to store personal data export files.
Usage
add_filter( 'wp_privacy_exports_dir', 'filter_function_name_1609' ); function filter_function_name_1609( $exports_dir ){ // filter... return $exports_dir; }
- $exports_dir(string)
- Exports directory.
Changelog
Since 4.9.6 | Introduced. |
Since 5.5.0 | Exports now use relative paths, so changes to the directory via this filter should be reflected on the server. |
Where the hook is called
wp_privacy_exports_dir
wp-includes/functions.php 7338
return apply_filters( 'wp_privacy_exports_dir', $exports_dir );