Make WordPress Core

Ticket #26811: 26811.patch

File 26811.patch, 1.6 KB (added by SergeyBiryukov, 11 years ago)
  • src/wp-content/themes/twentyfourteen/functions.php

     
    487487        }
    488488
    489489        // Add the site name.
    490         $title .= get_bloginfo( 'name' );
     490        $title .= get_bloginfo( 'name', 'display' );
    491491
    492492        // Add the site description for the home/front page.
    493493        $site_description = get_bloginfo( 'description', 'display' );
  • src/wp-content/themes/twentythirteen/functions.php

     
    208208                return $title;
    209209
    210210        // Add the site name.
    211         $title .= get_bloginfo( 'name' );
     211        $title .= get_bloginfo( 'name', 'display' );
    212212
    213213        // Add the site description for the home/front page.
    214214        $site_description = get_bloginfo( 'description', 'display' );
  • src/wp-content/themes/twentytwelve/functions.php

     
    203203                return $title;
    204204
    205205        // Add the site name.
    206         $title .= get_bloginfo( 'name' );
     206        $title .= get_bloginfo( 'name', 'display' );
    207207
    208208        // Add the site description for the home/front page.
    209209        $site_description = get_bloginfo( 'description', 'display' );