fixed single_month_title. thanks to Brak (http://wordpress.org/support/6/14897)

git-svn-id: https://develop.svn.wordpress.org/trunk@1815 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
michelvaldrighi 2004-10-18 23:45:26 +00:00
parent 54ceb25800
commit 3359d36922

View File

@ -216,14 +216,15 @@ function single_cat_title($prefix = '', $display = true ) {
}
function single_month_title($prefix = '', $display = true ) {
global $m, $month;
if(!empty($m)) {
$my_year = substr($m, 0, 4);
$my_month = $month[substr($m, 4, 2)];
if ($display)
echo $prefix . $my_month . $prefix . $my_year;
else
return $m;
global $monthnum, $month, $year;
if(!empty($monthnum)) {
$my_year = $year;
$my_month = $month[$monthnum];
if ($display) {
echo $prefix . $my_month . $prefix . " " . $my_year;
} else {
return $monthnum;
}
}
}
@ -631,4 +632,4 @@ function the_weekday_date($before='',$after='') {
echo $the_weekday_date;
}
?>
?>