在Wordpress中是否可以在日期格式中使用一些常量字符串?
类似于:
year:Y, month:F这将转化为:
year:2012, month:February发布于 2013-02-07 01:37:39
是的那是可能的。Wordpress使用php: date-function格式化日期,因此您可以在博客的常规设置页面中使用以下格式。
要使用常量字符串,您需要转义每个不应作为日期的一部分进行解析的字符:
\y\e\a\r: Y, \m\o\n\t\h: F此格式化字符串将导致“年: 2013,月:2月”。
另请参阅Wordpress Codex on formatting date and time。
https://stackoverflow.com/questions/14735214
复制相似问题