From 694fd87c013cbf2296b97f01b37b5d939aa667a3 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Tue, 4 Feb 2014 13:57:12 +0000 Subject: [PATCH] Default themes: Use the 'display' filter for get_bloginfo( 'name' ) attached to the wp_title filter. props michelwppi. fixes #26811. Built from https://develop.svn.wordpress.org/trunk@27091 git-svn-id: http://core.svn.wordpress.org/trunk@26963 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 405448107..06470d562 100644 --- a/functions.php +++ b/functions.php @@ -203,7 +203,7 @@ function twentytwelve_wp_title( $title, $sep ) { return $title; // Add the site name. - $title .= get_bloginfo( 'name' ); + $title .= get_bloginfo( 'name', 'display' ); // Add the site description for the home/front page. $site_description = get_bloginfo( 'description', 'display' );