-
Notifications
You must be signed in to change notification settings - Fork 14
notify_user_about_friend_post
Alex Kirk edited this page Oct 16, 2024
·
12 revisions
add_filter(
'notify_user_about_friend_post',
function (
$notify_user,
$user,
$post,
$author
) {
// Your code here
return $notify_user;
},
10,
4
);
$notify_user
$user
$post
$author
apply_filters( 'notify_user_about_friend_post', $notify_user, $user, $post, $author )