我已经在测试 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; ?>