From 31e4c5c5d992a5ed69fe0689b51cb5c072806e57 Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Wed, 24 Feb 2016 02:35:23 +0000 Subject: [PATCH] Make Custom Taxonomy Feeds Auto-discoverable This helps improve the parity between custom taxonomies and built in taxonomies. It is one small step to #makeCustomTaxonomyFeedsGreatAgain. Fixes #23677 Props mdgl, stevenkword git-svn-id: https://develop.svn.wordpress.org/trunk@36671 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/general-template.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php index 358412f968..e6a6498876 100644 --- a/src/wp-includes/general-template.php +++ b/src/wp-includes/general-template.php @@ -2535,6 +2535,8 @@ function feed_links_extra( $args = array() ) { 'cattitle' => __('%1$s %2$s %3$s Category Feed'), /* translators: 1: blog name, 2: separator(raquo), 3: tag name */ 'tagtitle' => __('%1$s %2$s %3$s Tag Feed'), + /* translators: 1: blog name, 2: separator(raquo), 3: term name, 4: taxonomy singular name */ + 'taxtitle' => __('%1$s %2$s %3$s %4$s Feed'), /* translators: 1: blog name, 2: separator(raquo), 3: author name */ 'authortitle' => __('%1$s %2$s Posts by %3$s Feed'), /* translators: 1: blog name, 2: separator(raquo), 3: search phrase */ @@ -2575,6 +2577,11 @@ function feed_links_extra( $args = array() ) { $title = sprintf( $args['tagtitle'], get_bloginfo('name'), $args['separator'], $term->name ); $href = get_tag_feed_link( $term->term_id ); } + } elseif ( is_tax() ) { + $term = get_queried_object(); + $tax = get_taxonomy( $term->taxonomy ); + $title = sprintf( $args['taxtitle'], get_bloginfo('name'), $args['separator'], $term->name, $tax->labels->singular_name ); + $href = get_term_feed_link( $term->term_id, $term->taxonomy ); } elseif ( is_author() ) { $author_id = intval( get_query_var('author') );