Make WordPress Core


Ignore:
Timestamp:
01/04/2016 05:15:31 PM (9 years ago)
Author:
obenland
Message:

Template: Always display the site title on the front page.

Limits using the page title to the blog page when the site has a static front page,
bringing it N’Sync with wp_title().

Props peterwilsoncc.
Fixes #34962.

File:
1 edited

Legend:

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

    r36107 r36168  
    857857        $title['title'] = sprintf( __( 'Search Results for “%s”' ), get_search_query() );
    858858
    859     // If on the home or front page, use the site title.
    860     } elseif ( is_home() && is_front_page() ) {
     859    // If on the front page, use the site title.
     860    } elseif ( is_front_page() ) {
    861861        $title['title'] = get_bloginfo( 'name', 'display' );
    862862
     
    870870
    871871    /*
    872      * If we're on the blog page and that page is not the homepage or a single
    873      * page that is designated as the homepage, use the container page's title.
    874      */
    875     } elseif ( ( is_home() && ! is_front_page() ) || ( ! is_home() && is_front_page() ) ) {
    876         $title['title'] = single_post_title( '', false );
    877 
    878     // If on a single post of any post type, use the post title.
    879     } elseif ( is_singular() ) {
     872     * If we're on the blog page that is not the homepage or
     873     * a single post of any post type, use the post title.
     874     */
     875    } elseif ( is_home() || is_singular() ) {
    880876        $title['title'] = single_post_title( '', false );
    881877
     
    905901
    906902    // Append the description or site title to give context.
    907     if ( is_home() && is_front_page() ) {
     903    if ( is_front_page() ) {
    908904        $title['tagline'] = get_bloginfo( 'description', 'display' );
    909905    } else {
Note: See TracChangeset for help on using the changeset viewer.