私は woocomemce サイトを持っており、製品には「メーカー」属性があります。
単一の製品の条件を取得した場合:
$terms= get_the_terms($product->id,"pa_manufacturer");
私は得る:
Array ( [230] => stdClass Object ( [term_id] => 230 [name] => Dadawan [slug] => dadawan [term_group] => 0 [term_taxonomy_id] => 230 [taxonomy] => pa_manufacturer [description] => [parent] => 0 [count] => 4 [object_id] => 2905 ) )
同じメーカーの製品を取得するために、その term_id のみでループ WP_query を実行できますか? その特定の term_id を持つ製品のみを取得するにはどうすればよいですか?
ここに私のテストがありますが、機能していません...
$args = array(
'post_type' => 'product',
'term_id' => 230 ,
'posts_per_page' => 2,
'orderby' => $orderby
);
$loop = new WP_Query( $args );
// Do stuff here to display your products
助けていただければ幸いです。