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