WordPress Version: 6.1
/**
* Determines whether to selectively skip post meta used for WXR exports.
*
* @since 3.3.0
*
* @param bool $return_me Whether to skip the current post meta. Default false.
* @param string $meta_key Meta key.
* @return bool
*/
function wxr_filter_postmeta($return_me, $meta_key)
{
if ('_edit_lock' === $meta_key) {
$return_me = true;
}
return $return_me;
}