-
Notifications
You must be signed in to change notification settings - Fork 14
notify_user_about_lost_follower
Alex Kirk edited this page Oct 16, 2024
·
1 revision
add_filter(
'notify_user_about_lost_follower',
function (
bool $true,
$user,
$actor,
$follower
) {
// Your code here
return $true;
},
10,
4
);
-
bool
$true
$user
$actor
$follower
apply_filters( 'notify_user_about_lost_follower', true, $user, $actor, $follower )