-
Notifications
You must be signed in to change notification settings - Fork 17
friends_comments_content
Alex Kirk edited this page Nov 22, 2024
·
3 revisions
add_filter(
'friends_comments_content',
function (
$content,
$post_id,
$friend_user,
$user_feed
) {
// Your code here
return $content;
},
10,
4
);
$content
$post_id
$friend_user
$user_feed
apply_filters( 'friends_comments_content', $content, $post_id, $friend_user, $user_feed )