-
Notifications
You must be signed in to change notification settings - Fork 19
friends_feed_list_title
github-actions[bot] edited this page Dec 11, 2025
·
1 revision
Filter the feed title displayed in the feed list.
add_filter(
'friends_feed_list_title',
function(
string $feed_title,
Friends\User_Feed $feed,
string $parser
) {
// Your code here.
return $feed_title;
},
10,
3
);-
string$feed_titleThe feed title. -
Friends\User_Feed$feedThe feed object. -
string$parserThe parser slug.
apply_filters( 'friends_feed_list_title', $feed_title, $feed, $parser_slug )