Bainternet 帮助过我earler 具有关系和参数。我现在需要做的是确定如何从一个键查询多个值。如果我尝试使用same key 查询失败。是否有方法在值中使用数组?类似于的东西。
\'value\' => array( \'Install Manual\', \'User Manual\' ),
我已经搜索了很多次,没有结果。这就是我目前所处的位置。
$documents = array(
\'post_type\' => \'documents\',
\'meta_query\' => array(
\'relation\' => \'AND\',
array(
\'key\' => \'document-type\',
\'value\' => array( \'Install Manual\', \'User Manual\' ),
),
array(
\'key\' => \'document-status\',
\'value\' => \'current\',
)
)
);
query_posts( $documents );
get_template_part( \'loop\', \'documents\' );
wp_reset_query();