Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: feed_links_extra_show_author_feed

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3307           }
3308      } elseif ( is_author() ) {
3309           /**
3310            * Filters whether to display the author feed link.
3311            *
3312            * @since 6.1.0
3313            *
3314            * @param bool $show Whether to display the author feed link. Default true.
3315            */
3316           $show_author_feed = apply_filters( 'feed_links_extra_show_author_feed', true );
3317
3318           if ( $show_author_feed ) {
3319                $author_id = (int) get_query_var( 'author' );
3320
3321                $title = sprintf(
3322                     $args['authortitle'],
3323                     get_bloginfo( 'name' ),
3324                     $args['separator'],
3325                     get_the_author_meta( 'display_name', $author_id )