-
Notifications
You must be signed in to change notification settings - Fork 15
friends_can_update_modified_feed_posts
Alex Kirk edited this page Oct 16, 2024
·
11 revisions
add_filter(
'friends_can_update_modified_feed_posts',
function (
bool $true,
$item,
$user_feed,
$friend_user,
$post_id
) {
// Your code here
return $true;
},
10,
5
);
-
bool
$true
$item
$user_feed
$friend_user
$post_id
apply_filters( 'friends_can_update_modified_feed_posts', true, $item, $user_feed, $friend_user, $post_id )