single.php日期错误虽然是正确的声明

时间:2015-07-29 10:01:17

标签: php wordpress plugins

Wordpress安装在single.php网站上显示错误的日期。

在前端,用户目前会在文章

下看到类似的内容
  
      
  1. November -0001
  2.   

上述日期的文章于2015年7月17日发布。 使用" the_date"来实现日期。来自Wordpress codex的标签。

<?php the_date('d. F Y'); ?>

我不知道什么可能导致这个问题。

感谢您的每一条评论!

1 个答案:

答案 0 :(得分:0)

尝试使用此内部循环:

<?php while ( have_posts() ) : the_post(); ?>
<?php echo get_the_date('j F Y'); ?>
<?php endwhile; ?>