我在测试网址上发布了一个网站,除了我设置为显示特定类别的帖子的一个页面之外一切正常但是最近的帖子没有出现,如果我在该类别下发布另一篇文章则会推送页面上倒数第二,但仍未显示我发布的最新内容..请帮助..
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; ?>
答案 0 :(得分:0)
假设您提供的代码来自图库类别页面,这可能是查询帖子的方式的问题。默认情况下,它应该按照您的方式工作,但您可以尝试在图库页面like this上对新查询进行硬编码。
尝试直接在while
语句之前进行排查:
<?php
query_posts( array ( 'category_name' => 'gallery', 'posts_per_page' => -1 ) );
?>