Make WordPress Core

Changeset 21984


Ignore:
Timestamp:
09/24/2012 09:21:29 PM (12 years ago)
Author:
nacin
Message:

Auto feeds for post type archives. props mgdl, wonderboymusic. fixes #21648.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/general-template.php

    r21926 r21984  
    16321632        /* translators: 1: blog name, 2: separator(raquo), 3: search phrase */
    16331633        'searchtitle' => __('%1$s %2$s Search Results for “%3$s” Feed'),
     1634        /* translators: 1: blog name, 2: separator(raquo), 3: post type name */
     1635        'posttypetitle' => __('%1$s %2$s %3$s Feed'),       
    16341636    );
    16351637
     
    16621664        $title = sprintf( $args['searchtitle'], get_bloginfo('name'), $args['separator'], get_search_query( false ) );
    16631665        $href = get_search_feed_link();
    1664     }
     1666    } elseif ( is_post_type_archive() ) {
     1667        $title = sprintf( $args['posttypetitle'], get_bloginfo('name'), $args['separator'], post_type_archive_title( '', false ) );
     1668        $href = get_post_type_archive_feed_link( get_post_type() );
     1669    }
    16651670
    16661671    if ( isset($title) && isset($href) )
Note: See TracChangeset for help on using the changeset viewer.