friends_edit_feed_content_top - akirk/friends GitHub Wiki
Action to add content at the top of the feed edit section.
Auto-generated Example
add_action(
'friends_edit_feed_content_top',
function(
Friends\User_Feed $feed,
int $term_id,
string $parser
) {
// Your code here.
},
10,
3
);
Parameters
Friends\User_Feed$feedThe feed being edited.int$term_idThe term ID of the feed.string$parserThe parser slug.
Files
do_action( 'friends_edit_feed_content_top', $feed, $term_id, $parser_slug )