0

我已经上传了一个插件作为“特色帖子”来添加特色帖子,还添加了常规帖子,这两种帖子都具有默认类别(比如,购买知道)。我只想显示常规帖子(即非精选),但我无法仅显示常规帖子,它显示总帖子(即常规加精选)。请任何人帮助我只显示常规帖子。谢谢莎玛

4

1 回答 1

-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();
于 2015-09-03T10:18:15.433 回答