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