Ticket #26811: 26811.patch
File 26811.patch, 1.6 KB (added by , 11 years ago) |
---|
-
src/wp-content/themes/twentyfourteen/functions.php
487 487 } 488 488 489 489 // Add the site name. 490 $title .= get_bloginfo( 'name' );490 $title .= get_bloginfo( 'name', 'display' ); 491 491 492 492 // Add the site description for the home/front page. 493 493 $site_description = get_bloginfo( 'description', 'display' ); -
src/wp-content/themes/twentythirteen/functions.php
208 208 return $title; 209 209 210 210 // Add the site name. 211 $title .= get_bloginfo( 'name' );211 $title .= get_bloginfo( 'name', 'display' ); 212 212 213 213 // Add the site description for the home/front page. 214 214 $site_description = get_bloginfo( 'description', 'display' ); -
src/wp-content/themes/twentytwelve/functions.php
203 203 return $title; 204 204 205 205 // Add the site name. 206 $title .= get_bloginfo( 'name' );206 $title .= get_bloginfo( 'name', 'display' ); 207 207 208 208 // Add the site description for the home/front page. 209 209 $site_description = get_bloginfo( 'description', 'display' );