我有一个问题,发布日期有时出现,有时没有。
我正在使用ACF relationship(ACF关系)字段查找故事,然后将其带到我的头版。
<?php the_date(); ?>
我有一个问题,发布日期有时出现,有时没有。
我正在使用ACF relationship(ACF关系)字段查找故事,然后将其带到我的头版。
<?php the_date(); ?>
从…起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(); ?>
我想列出最近published 我的wp博客的帖子,并排除某些类别的帖子。以下代码运行良好,列出了10篇最近发表的文章,忽略了列出类别中的文章。然而,草案员额也被列出。$args = array( \'numberposts\' => \'10\', \'tax_query\' => array( \'post_type\' => \'post\', \'post_status\' => array( \'publish\' ),&#x