我的帖子类型是product.当我是数组([0] =>精选)时,我使用带有meta keyis ht_featured,meta值的复选框字段print_r.
我的WP_Query:
$the_query = new WP_Query(
'post_type' => 'product',
'showposts' => 12,
'meta_query' => array(
array(
'key' => 'ht_featured',
'value' => array('featured'),
'compare' => 'IN'
)
)
);
Run Code Online (Sandbox Code Playgroud)
它没有显示任何帖子.我尝试过value => 'featured','compare' => 'EXISTS'但它不起作用.