一直在尝试在查询中使用Redux框架调用选项变量,即使用多类别选择。以下是我的查询:
$the_query = new WP_Query(array(
array( \'category__and\' => $my_options[\'featured_section\'] ),
\'posts_per_page\' => 1
));
while ( $the_query->have_posts() ) :
$the_query->the_post();
这行不通。的输出
$my_options[\'featured_section\']
是:
Array ( [0] => 20 [1] => 16 )
我在选项区域中选择了两个类别,即ID 20和ID 16。知道为什么这不能称为正确的类别吗?