-
Notifications
You must be signed in to change notification settings - Fork 14
notify_about_new_friend_post
Alex Kirk edited this page Oct 16, 2024
·
11 revisions
add_filter(
'notify_about_new_friend_post',
function (
bool $true,
$friend_user,
$post_id,
$user_feed,
$keyword_match
) {
// Your code here
return $true;
},
10,
5
);
-
bool
$true
$friend_user
$post_id
$user_feed
$keyword_match
apply_filters( 'notify_about_new_friend_post', true, $friend_user, $post_id, $user_feed, $keyword_match )