-
Notifications
You must be signed in to change notification settings - Fork 17
notify_keyword_match_post
Alex Kirk edited this page Apr 9, 2024
·
10 revisions
add_filter(
'notify_keyword_match_post',
function (
bool $false,
$post,
$keyword_match
) {
// Your code here
return $false;
},
10,
3
);
-
bool
$false
$post
$keyword_match
apply_filters( 'notify_keyword_match_post', false, $post, $keyword_match )