我有一个自定义查询,我需要一些帮助来转换为可视化作曲家的自定义查询。基本上,我想从帖子网格中排除所有帖子,这些帖子具有 meta_key: _is_featured_posts 并且其值为 yes。
// WP_Query arguments
$args = array(
'post_type' => array( 'post' ),
'post_status' => array( 'publish' ),
'nopaging' => false,
'posts_per_page' => '12',
'order' => 'DESC',
'orderby' => 'date',
'meta_query' => array(
'relation' => 'AND',
array(
'key' => '_is_ns_featured_post',
'value' => 'yes',
'compare' => 'NOT EXISTS',
),
),
);
// The Query
$query = new WP_Query( $args );
任何帮助,将不胜感激。
谢谢