2012-10-08 94 views
1

我已經發布了一個測試網址的網站,除了一個頁面我已經設置爲顯示某個類別的帖子,但最近的帖子沒有看起來,如果我發佈該類別下的另一篇文章中就推第二到最後一個頁面上,但仍然不顯示最近的一次我posted..Please幫助..我的最新wordpress文章沒有出現在我選擇的類別中

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

是你只要從庫類別頁面所採取的代碼? – coryetzkorn

回答

0

假設你提供的是從庫分類頁面的代碼,這可能是與職位被查詢的方式的問題。它應該默認以您的方式工作,但您可以嘗試在畫廊頁面like this上硬編碼一個新查詢。

嘗試把這個直接的while語句之前解決:

<?php 
query_posts(array ('category_name' => 'gallery', 'posts_per_page' => -1)); 
?> 
相關問題