4
하위 분류 항목을 제외하도록 분류 페이지를 수정하십시오.
이 질문을 찾았습니다. pre_get_posts 필터에서 $ query-> set ( 'tax_query'를 사용하는 방법이 있습니까? 예, pre_get_posts ()를 통해 분류 아카이브에서 분류 쿼리를 변경할 수 있음을 나타냅니다. 그래서 나는 생각해 냈습니다. add_action('pre_get_posts', 'kia_no_child_terms' ); function kia_no_child_terms( $wp_query ) { if( is_tax() ) { $wp_query->tax_query->queries[0]['include_children'] = 0; } } 만큼 잘 add_action('pre_get_posts', 'kia_no_child_terms' …