friends_no_comments_feed_available - akirk/friends GitHub Wiki

Auto-generated Example

add_filter(
   'friends_no_comments_feed_available',
    function(
        string $no_comments_yet_,
        $post_id,
        $friend_user,
        $user_feed
    ) {
        // Your code here.
        return $no_comments_yet_;
    },
    10,
    4
);

Parameters

  • string $no_comments_yet_
  • $post_id
  • $friend_user
  • $user_feed

Files

apply_filters( 'friends_no_comments_feed_available', __( 'No comments yet.', 'friends' ), $post_id, $friend_user, $user_feed )

← All Hooks