Make WordPress Core


Ignore:
Timestamp:
10/20/2015 04:20:04 PM (9 years ago)
Author:
obenland
Message:

Themes: Improve document title output.

Introduces more flexibility in filtering all parts of the document title,the
separator, and a way to short-circuit title generation. Plugins can now also
check for theme support and reliably filter the entire output. See #18548.
Deprecates wp_title().

Fixes #31078.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/feed-atom-comments.php

    r32800 r35294  
    3434            printf( ent2ncr( __( 'Comments for %1$s searching on %2$s' ) ), get_bloginfo_rss( 'name' ), get_search_query() );
    3535        else
    36             printf( ent2ncr( __( 'Comments for %s' ) ), get_bloginfo_rss( 'name' ) . get_wp_title_rss() );
     36            printf( ent2ncr( __( 'Comments for %s' ) ), get_wp_title_rss() );
    3737    ?></title>
    3838    <subtitle type="text"><?php bloginfo_rss('description'); ?></subtitle>
Note: See TracChangeset for help on using the changeset viewer.