-
Notifications
You must be signed in to change notification settings - Fork 14
notify_friend_message_received
Alex Kirk edited this page Apr 9, 2024
·
9 revisions
add_action(
'notify_friend_message_received',
function (
$friend_user,
$message,
$subject
) {
// Your code here
},
10,
3
);
$friend_user
$message
$subject
do_action( 'notify_friend_message_received', $friend_user, $message, $subject )