我有一个Wordpress博客网站,我正在建设。我的问题是,当主页加载时,它会显示我三年前的最早帖子。我希望我最近的帖子能展示什么。谁能告诉我怎样才能做到这一点。我已经阅读了几篇文章,没有一篇是适合我的解决方案。下面是我用来加载帖子的代码:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h4>Posted on <?php the_time(\'F jS, Y\') ?></h4>
<p><?php the_content(__(\'(more...)\')); ?></p>
<hr> <?php endwhile; else: ?>
<p><?php _e(\'Sorry, no posts matched your criteria.\'); ?></p><?php
endif; ?>