1

我已经在测试 url 上发布了一个网站,除了我设置显示某个类别的帖子但最近的帖子没有出现的一个页面之外,一切正常,如果我在该类别下发布另一篇文章,它会推倒数第二个一个在页面上,但仍然没有显示我最近发布的一个..请帮助..

http://www.scriptposter.com/new/category/gallery/

它在主页上拉它虽然很好,

主页 http://www.scriptposter.com/new/

这是我正在使用的代码:

<?php while ( have_posts() ) : the_post() ?>
<div class="secondColumn">
<div class="blogFeatureWorkImage">"><?php the_post_thumbnail('small-thumb'); ?></div>
</div>
<div class="thirdColumn2">
<div class="blogFeatureWorkContent">
<h1 class="articleTitle"><span class="yellow">"><?php the_title();?></span></h1>
<p><?php the_content();?></p>
</div>
</div>
<div class="clear"></div>
<?php endwhile; ?>
4

1 回答 1

0

假设您提供的代码来自图库类别页面,这可能是查询帖子方式的问题。默认情况下,它应该按照您的方式工作,但您可以尝试在图库页面上硬编码一个新查询,如下所示

尝试将其直接放在while语句之前以进行故障排除:

<?php 
query_posts( array ( 'category_name' => 'gallery', 'posts_per_page' => -1 ) ); 
?>
于 2012-10-09T03:44:36.730 回答