wxr_export_skip_postmeta WordPress Filter Hook
The wxr_export_skip_postmeta hook allows you to specify which postmeta data should not be exported when using the WordPress export tool. This can be useful if you want to exclude certain data from being exported.
apply_filters( 'wxr_export_skip_postmeta', bool $skip , string $meta_key , object $meta ) #
Filters whether to selectively skip post meta used for WXR exports.
Description
Returning a truthy value from the filter will skip the current meta object from being exported.
Parameters
- $skip
(bool)Whether to skip the current post meta. Default false.
- $meta_key
(string)Current meta key.
- $meta
(object)Current meta object.
Source
Changelog
Version | Description |
---|---|
3.3.0 | Introduced. |