category_ID
不是的有效密钥WP_Query
. cat
如果要查询类别,则可以使用:
示例:
$args = array(
\'numberposts\' => -1,
\'post_type\' => \'rooms\',
\'cat\' => 8,
);
$the_query = new WP_Query( $args );
如果你的类别实际上不是税收
category
但作为自定义分类法,这将是查询它的另一种方式:
$args = array(
\'numberposts\' => -1,
\'post_type\' => \'rooms\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'your-category-taxonomy\',
\'terms\' => 8,
),
),
);
$the_query = new WP_Query( $args );
希望这有帮助。