我想在子类别中显示帖子,但不知道该怎么办。但是此代码不会在类别中显示帖子,而是在类别中显示整个帖子。你能帮我吗?
CTE columns
答案 0 :(得分:1)
请尝试以下代码
$args = array(
'post_type' => 'hotcheck',
'tax_query' => array(
array(
'taxonomy' => 'category', // Add your taxonomy name here
'field' => 'term_id',
'terms' => $cat->term_id,
),
),
);
$query = new WP_Query($args);
希望它能为您服务感谢!