WordPress 模板函数 the_date 输出为空

发布于 2019-03-05 16:20:21 字数 1720 浏览 1386 评论 0

在使用自定义查询文章的时候,输出的时间总是为空,使用官方提供的 the_date 函数无论传什么参数都是一样。

WordPress 模板函数 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

JSmiles

生命进入颠沛而奔忙的本质状态,并将以不断告别和相遇的陈旧方式继续下去。

0 文章
0 评论
84960 人气
更多

推荐作者

lorenzathorton8

文章 0 评论 0

Zero

文章 0 评论 0

萧瑟寒风

文章 0 评论 0

mylayout

文章 0 评论 0

tkewei

文章 0 评论 0

17818769742

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文