-
Notifications
You must be signed in to change notification settings - Fork 14
friends_no_comments_feed_available
Alex Kirk edited this page Oct 16, 2024
·
2 revisions
add_filter(
'friends_no_comments_feed_available',
function (
string $we_tried_to_load_comments_remotely_but_there_were_no_comments_,
$post_id,
$friend_user,
$user_feed
) {
// Your code here
return $we_tried_to_load_comments_remotely_but_there_were_no_comments_;
},
10,
4
);
-
string
$we_tried_to_load_comments_remotely_but_there_were_no_comments_
$post_id
$friend_user
$user_feed
apply_filters( 'friends_no_comments_feed_available', __( 'We tried to load comments remotely but there were no comments.', 'friends' ), $post_id, $friend_user, $user_feed )