Feeds: Remove an unreachable condition when generating archive feed links.

Props donmhico, pbiron

Fixes #48427

git-svn-id: https://develop.svn.wordpress.org/trunk@47406 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2020-03-02 18:50:22 +00:00
parent 3c5d847872
commit ef878b59c9
1 changed files with 0 additions and 6 deletions

View File

@ -3046,12 +3046,6 @@ function feed_links_extra( $args = array() ) {
} elseif ( is_search() ) {
$title = sprintf( $args['searchtitle'], get_bloginfo( 'name' ), $args['separator'], get_search_query( false ) );
$href = get_search_feed_link();
} elseif ( is_post_type_archive() ) {
$title = sprintf( $args['posttypetitle'], get_bloginfo( 'name' ), $args['separator'], post_type_archive_title( '', false ) );
$post_type_obj = get_queried_object();
if ( $post_type_obj ) {
$href = get_post_type_archive_feed_link( $post_type_obj->name );
}
}
if ( isset( $title ) && isset( $href ) ) {