diff --git a/wp-includes/template-functions-general.php b/wp-includes/template-functions-general.php index 91285c40e8..66716ebaf8 100644 --- a/wp-includes/template-functions-general.php +++ b/wp-includes/template-functions-general.php @@ -221,10 +221,10 @@ function single_month_title($prefix = '', $display = true ) { global $m, $monthnum, $month, $year; if(!empty($monthnum) && !empty($year)) { $my_year = $year; - $my_month = $month[$monthnum]; + $my_month = $month[str_pad($monthnum, 2, '0', STR_PAD_LEFT)]; } elseif(!empty($m)) { $my_year = substr($m, 0, 4); - $my_month = $month[str_pad($monthnum, 2, '0', STR_PAD_LEFT)]; + $my_month = $month[substr($m, 4, 2)]; } if (!empty($my_month) && $display) {