-
Notifications
You must be signed in to change notification settings - Fork 14
feed_item_allow_set_metadata
Alex Kirk edited this page Apr 9, 2024
·
6 revisions
add_filter(
'feed_item_allow_set_metadata',
function (
bool $false,
$key,
$value,
$this
) {
// Your code here
return $false;
},
10,
4
);
-
bool
$false
$key
$value
$this
apply_filters( 'feed_item_allow_set_metadata', false, $key, $value, $this )