由于使用了echo get_the_date(\'F j, Y\')
.正如您在documentation:
这个get_the_date 模板标记检索current $帖子已经写好了。
改变get_the_date(\'F j, Y\')
到get_the_date(\'F j, Y\', $value->ID)
它应该会起作用。
或无其他DB查询:
<div class="c-singlepost__sidebar__articles-item-date">
<span> <?php
$date = \\DateTime::createFromFormat(\'Y-m-d H:i:s\', $value->post_date);
echo ($date !== FALSE) ? $date->format(\'F j, Y\') : \'\';
?> </span>
</div>