网站技术

wordpress文章列表同一天的日期只显示一次

2019/05/27 7,809 2 GoaKay小狼

1.问题

看回文章的时候发现有些日期不见了,到后台查看,两篇文章是同一天发布的。我这时使用的是:

<?php the_date('Y-m-d'); ?>

如果在同一天发布,则显示一组帖子。所以在同一天下发布的页面上有多个帖子时,the_date()仅显示第一个帖子的日期(即the_date()的第一个实例)。

根据官方说明:
https://codex.wordpress.org/Template_Tags/the_date

2.解决方法

接下来,你想在同一天发布的帖子都显示日期,应该把<?php the_date('Y-m-d'); ?>替换为:

<?php the_time('Y/m/d'); ?>

或者

<?php echo get_the_date('Y/m/d'); ?>
注:echo不能去掉,否则不会输出内容。
订阅
提醒
guest

2 评论
Inline Feedbacks
View all comments
nice
4 年 之前

暫時沒有遇到這個情況,或者以後會遇到呢,學習一下~

txh
txh
4 年 之前

great