-
Notifications
You must be signed in to change notification settings - Fork 14
friends_notify_keyword_match_post
Alex Kirk edited this page Oct 16, 2024
·
1 revision
add_filter(
'friends_notify_keyword_match_post',
function (
bool $false,
$post,
$keyword_match
) {
// Your code here
return $false;
},
10,
3
);
-
bool
$false
$post
$keyword_match
apply_filters( 'friends_notify_keyword_match_post', false, $post, $keyword_match )