Wordpress日期格式

时间:2013-02-06 17:31:23

标签: php wordpress date-format

是否可以在Wordpress中的日期格式中使用一些常量字符串?

类似的东西:

year:Y, month:F

将转换为:

year:2012, month:February

1 个答案:

答案 0 :(得分:1)

是的,这是可能的。 Wordpress使用php: date-function格式化日期,因此您可以在博客的常规设置页面上使用以下格式。

要使用常量字符串,您需要转义不应在日期中解析的每个字符:

\y\e\a\r: Y, \m\o\n\t\h: F

此格式字符串将导致“年:2013年,月:2月”。

另请参阅Wordpress Codex on formatting date and time