diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 36e4738543..a50f479493 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -201,7 +201,8 @@ function wp_title($sep = '»', $display = true) { if ( !empty($m) ) { $my_year = substr($m, 0, 4); $my_month = $wp_locale->get_month($m); - $title = "$my_year $sep $my_month"; + $my_day = intval(substr($m, 6, 2)); + $title = "$my_year" . ($my_month ? "$sep $my_month" : "") . ($my_day ? "$sep $my_day" : ""); } if ( !empty($year) ) {