2013-03-28 98 views
0

我已經上傳了一個插件作爲'精選帖子'添加精選帖子,也添加了常規帖子,這兩種類型的帖子都有默認的類別(比如說,購買知道)。我只想顯示常規帖子(即不顯示),但我無法只顯示常規帖子,它顯示的帖子總數(即常規加特色)。請任何人幫助我只顯示常規帖子。 感謝 莎瑪如何顯示非功能WordPress的帖子

+0

你需要給我們更多的信息。你使用什麼插件?你知道它是如何作爲精選存儲的:它是標記,後置類型,類別,自定義元字段還是其他? – ceruleus

+0

請把你的問題澄清爲1.你試圖達到什麼樣的最終結果,2.你如何努力實現它,以及3.發生的錯誤或問題是什麼。應包括關於您使用的插件的細節,您已更改的代碼(顯示原始代碼和更改的代碼)。不要在評論中這樣做,而是編輯你的問題。您的段落之間的PS白色空間是免費的;-) – Sepster

+0

這可能更適合http://wordpress.stackexchange.com –

回答

-1
$feature_ids=array(); 

$query=query_posts('featured'=>'yes'); 

while(have_posts()):the_post(); 

$feature_ids[]=get_the_ID(); 

endwhile;wp_reset_query(); 


// now your feature posts id store in $feature_ids as array then 
// in actual query 

$query=new WP_Query('post__not_in'=>$feature_ids); 

// it will exclude the posts that are feature 

if(have_posts()):while(have_posts()):the_post(); 
// yours data 

endwhile;endif;wp_reset_query();