发布日期不总是显示的问题

时间:2018-04-30 作者:sethg

我有一个问题,发布日期有时出现,有时没有。

我正在使用ACF relationship(ACF关系)字段查找故事,然后将其带到我的头版。

<?php the_date(); ?>

如果我打开故事并以新的发布日期重新发布它,它就会起作用。

http://www.thenewshouse.com

enter image description here

1 个回复
SO网友:Pat J

从…起the the_date() documentation:

Will only output the date if the current post’s date is different from the previous one output.

i、 e.只有一个日期列表将显示循环中每天显示的帖子的价值,即使每个帖子都多次调用该函数。

[强调我的]

你几乎肯定在寻找get_the_date(), 您会这样使用:

<?php echo get_the_date(); ?>

结束

相关推荐

Show recent published posts

我想列出最近published 我的wp博客的帖子,并排除某些类别的帖子。以下代码运行良好,列出了10篇最近发表的文章,忽略了列出类别中的文章。然而,草案员额也被列出。$args = array( \'numberposts\' => \'10\', \'tax_query\' => array( \'post_type\' => \'post\', \'post_status\' => array( \'publish\' ),&#x