-
Notifications
You must be signed in to change notification settings - Fork 19
friends_can_update_modified_feed_posts
github-actions[bot] edited this page Mar 20, 2026
·
14 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 )