这就是你想要的吗?使用元查询的“关系”,可以选择多个元键。您可以将“比较”更改为该功能可用的任何操作。(来自Codex)比较(字符串)-运算符以进行测试。可能的值为“=”、“!=”、“>”、“>=”、\'<;\',\'<;=\',\'“LIKE”、“NOT LIKE”、“IN”、“NOT IN”、“BETWEEN”、“NOT BETWEEN”、“EXISTS”和“NOT EXISTS”。默认值为“=”。
// WP_Query arguments
$args = array (
\'post_type\' => \'your-post-type\',
\'meta_query\' => array(
\'relation\' => \'AND\',
array(
\'key\' => \'colours_%_colour\',
\'value\' => \'Red\',
\'compare\' => \'LIKE\',
),
array(
\'key\' => \'colours_%_design_style\',
\'value\' => \'Plain\',
\'compare\' => \'Like\'
),
),
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();