日期功能未正确返回日期

时间:2013-09-20 20:50:38

标签: php wordpress

此代码用于生成wordpress中帖子的日期:

<span class="the_date">Posted: <?php echo get_the_time('F d, Y'); ?></span>

然而,它没有重新开始日期,而是返回文本:

enter image description here

如何解决此问题?

1 个答案:

答案 0 :(得分:0)

您可以尝试使用以下格式

<?php  the_time('F j, Y \a\t g:i a');  ?> or

<?php the_time(get_option('date_format')); ?>