我正在使用主题:Dreame,我非常喜欢它,但它有一个问题。日期显示如下:
%A, 12UTCThu, 12 Dec 2013 20:56:27 +0000 %e. %B %Y
我不知道为什么会出现这个问题。我在编辑器中检查了single.php,这是检索帖子的时间
<span class="TzCreate"><?php the_date(); ?></span>
我在哪里可以解决这个问题?
答案 0 :(得分:1)
只需更改格式(http://codex.wordpress.org/Function_Reference/the_date):
<?php the_date( $format, $before, $after, $echo ); ?>
如何格式化: http://codex.wordpress.org/Formatting_Date_and_Time
将其更改为:
<span class="TzCreate"><?php the_date('l, F j, Y'); ?></span>
将显示:
2013年12月12日,星期四