WordPress 模板函数 the_date 输出为空

在使用自定义查询文章的时候,输出的时间总是为空,使用官方提供的 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 的参数一致。

以上是 WordPress 模板函数 the_date 输出为空 的全部内容, 来源链接: utcz.com/p/232063.html

回到顶部