-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_allow_copy_meta
github-actions[bot] edited this page Jun 20, 2026
·
5 revisions
Filter to allow Duplicate Posts plugin to copy XPoster meta data when a post is duplicated.
add_filter(
'wpt_allow_copy_meta',
function( bool $disable ) {
// Your code here.
return $disable;
}
);-
bool$disableTrue to allow meta to be copied. Default false.
bool
apply_filters( 'wpt_allow_copy_meta', false )