“category\\uu in”参数接受数组。您给它一个逗号分隔的值字符串。此外,您需要使用explode()
而不是implode()
. implode()
用于将数组元素与字符串连接,而explode()
用于将一个字符串拆分为另一个字符串。请尝试以下操作:
$args = array(
\'category__in\' => array( explode( ot_get_option( \'beautiful_categories\' ), \',\' ) ),
);
$query = new WP_Query( $args );