WordPress函数single_month_title()

WordPress函数single_month_title()

介绍

single_month_title() 用于返回“月”、“年”值,在date.php的archive页面,其他页面不支持。

使用

<?php single_month_title( $prefix, $display ) ?>

默认

<?php single_month_title(); ?>

参数

prefix
(string) (optional) 标题前返回值
Default: None
display
(boolean) (optional) Display the title (TRUE), or return the title to be used in PHP (FALSE).
Default: TRUE

返回

The generated title will be:

prefix + MONTH + prefix + YEAR
If prefix parameter is ‘*’, an example would be:

*February*2004

示例

月份和年换行:

<p><?php single_month_title('<br />') ?></p>
December
2004

使用 $my_month 变量
返回分配给 $my_month 变量的标题。然后,使用 PHP echo 命令显示变量的值。

<?php $my_month = single_month_title('', false); echo $my_month; ?>
版权声明
转载请注明本文来源:WordPress函数single_month_title()
转载请注明本文地址:https://www.e363.com/1252.html
THE END
喜欢龙网的内容,就支持一下吧!
点赞87赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容