WordPress 模板函数 the_date 输出为空
在使用自定义查询文章的时候,输出的时间总是为空,使用官方提供的 the_date 函数无论传什么参数都是一样。
查了一下 WordPress 的官方文档,有这么一段提示:
SPECIAL NOTE: When there are multiple posts on a page published under the SAME DAY, the_date() only displays the date for the first post (that is, the first instance of the_date()). To repeat the date for posts published under the same day, you should use the Template Tag the_time() or get_the_date() (since 3.0) with a date-specific format string.
Use
<?php the_time( get_option( 'date_format' ) ); ?>
to add the date set in the admin interface.
意思是 the_date()
在同一个页面(同一篇文章)中,只输出一次,如果要重复输出日期,你需要用 the_time()
或者 get_the_date()
这两个函数。
后面还有一句话:
This tag must be used within The Loop.
必须在 Loop 循环里面使用 the_date 函数。
一个万能的解决方式就是全部使用 the_time 来显示时间,参数和 the_date 以及 PHP 函数 date 的参数一致。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论