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 $feed The feed being edited.
  • int $term_id The term ID of the feed.
  • string $parser The parser slug.

Files

do_action( 'friends_edit_feed_content_top', $feed, $term_id, $parser_slug )

← All Hooks