在类别页面上显示具有标题和发布日期的特定类别的帖子。问题是它只获取第一个列表项的日期,而另一个列表项则返回空白。
这是我的代码:
<div class="post-date">
<?php the_date(); ?>
</div>
如何显示每个帖子标题的帖子发布日期?
答案 0 :(得分:2)
使用此
<?php the_time('F j, Y \a\t g:i a'); ?> or
<?php the_time(get_option('date_format')); ?>
如果在SAME DAY下发布的页面上有多个帖子,则the_date()仅显示第一个帖子的日期(即the_date()的第一个实例)。要重复在同一天发布的帖子的日期,您应该使用模板标记the_time()和日期特定的格式字符串。
答案 1 :(得分:1)
您可以尝试按照以获取发布日期
<?php the_time( get_option( 'date_format' ) ); ?>