-
Notifications
You must be signed in to change notification settings - Fork 17
friends_show_author_edit
Alex Kirk edited this page Apr 9, 2024
·
6 revisions
add_filter(
'friends_show_author_edit',
function (
bool $true,
$friend_user
) {
// Your code here
return $true;
},
10,
2
);
-
bool
$true
$friend_user
apply_filters( 'friends_show_author_edit', true, $args['friend_user'] )
apply_filters( 'friends_show_author_edit', true, $args['friend_user'] )