我已经搜索了这个查询的答案(双关语)。
我正在尝试查询转发器字段具有值(即非空)的子字段的所有帖子。目前正在使用正确的顺序浏览post_type“sites”中的所有帖子,但meta_query没有效果。
<?php
$args = array(
'post_type' => 'sites',
'orderby' => 'meta_value_num',
'posts_per_page' => 5,
'meta_query' => array(
array(
'key' => 'bonuses',
'compare' => '!='
)
)
);
query_posts($args);
while (have_posts()):
the_post(); ?>
答案 0 :(得分:0)
尝试将'compare' => '!='
替换为'value' => 'EXISTS'
,看看是否有帮助。