如何显示非特色wordpress帖子

时间:2013-03-28 13:41:07

标签: wordpress wordpress-plugin

我上传了一个插件作为'精选帖子'来添加精选帖子,还添加了常规帖子,这两种类型的帖子都有默认类别(比如买就知道)。我想只显示常规帖子(即非特色),但我不能只显示常规帖子,它显示总帖子(即常规加特色)。请任何人帮我只显示常规帖子。 谢谢 莎玛

1 个答案:

答案 0 :(得分:-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();