Filters whether to display the custom taxonomy feed link.
$showboolwp-includes/general-template.php:3450feed_links_extra() * Filters whether to display the custom taxonomy feed link. * * @since 6.1.0 * * @param bool $show Whether to display the custom taxonomy feed link. Default true. */ $show_tax_feed = apply_filters( 'feed_links_extra_show_tax_feed', true ); if ( $show_tax_feed ) { $term = get_queried_object(); if ( $term ) { $tax = get_taxonomy( $term->taxonomy );Introduced in 6.1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.