feed_links_extra_show_tag_feed filter-hookWP 6.1.0

Filters whether to display the tag feed link.

Usage

add_filter( 'feed_links_extra_show_tag_feed', 'wp_kama_feed_links_extra_show_tag_filter' );

/**
 * Function for `feed_links_extra_show_tag_feed` filter-hook.
 * 
 * @param bool $show Whether to display the tag feed link.
 *
 * @return bool
 */
function wp_kama_feed_links_extra_show_tag_filter( $show ){

	// filter...
	return $show;
}
$show(true|false)
Whether to display the tag feed link.
Default: true

Changelog

Since 6.1.0 Introduced.

Where the hook is called

feed_links_extra()
feed_links_extra_show_tag_feed
wp-includes/general-template.php 3268
$show_tag_feed = apply_filters( 'feed_links_extra_show_tag_feed', true );

Where the hook is used in WordPress

Usage not found.