すべてのカテゴリを表示する php コードを変更して、特定のカテゴリを表示するようにしてください。
add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 );
function get_subcategory_terms( $terms, $taxonomyes, $args ) {
$new_terms = array();
if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_shop() ) {
foreach ( $terms as $key => $term ) {
$new_terms[] = $term;
}
$terms = $new_terms
}
$term を返します
}
これは現在のコードです。データベースに term_id というフィールドがあるテーブルがあり、$duqu に表示する必要があるカテゴリの term_id を上記のコードに挿入する方法を知りたいです。選択した term_id のカテゴリのみを表示します ありがとうございます。