taxonomy_feed_link

taxonomy_feed_link

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('taxonomy_feed_link') is found 1 times:

  • /wp-includes/link-template.php line 1004
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
             * @param string $link     The taxonomy feed link.
             * @param string $feed     Feed type. Possible values include 'rss2', 'atom'.
             * @param string $taxonomy The taxonomy name.
             */
            $link = apply_filters( 'taxonomy_feed_link', $link, $feed, $taxonomy );
        }
     
        return $link;
    }
     
    /**