如何在子类别上显示帖子

我想在子类别中显示帖子,但不知道该怎么办。但是此代码不会在类别中显示帖子,而是在类别中显示整个帖子。你能帮我吗?

CTE columns
zx986410 回答:如何在子类别上显示帖子

请尝试以下代码

$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);

希望它能为您服务感谢!

本文链接:https://www.f2er.com/3154739.html

大家都在问