我在看书this post “排除具有特定meta\\u值的帖子”,但它不能正常工作。下面是我要传递的论点WP_Query
:
$args=array(
\'cat\' => $catid,
\'category__in\'=> $term_ids,
\'post_type\' => \'post\',
\'post_status\' => \'publish\',
\'posts_per_page\' => -1,
\'meta_query\' => array(
array(
\'key\' => \'featured_post\',
\'value\' => \'on\',
),
),
);
使用上述方法,我可以列出使用meta键的帖子,但我不希望帖子显示meta键“featured\\u post”。如果我更改
value
然后不显示帖子。
meta值只是特色帖子的复选框。