您已复制存档产品。php在Woocomece文件夹中的模板文件夹中。
然后编辑文件,基本上通过所需的类别(例如,类别id为12和24)运行循环;
$product_categories = array(12,24);
foreach($product_categories as $category){
$product_options = array(
\'posts_per_page\' => -1,
\'post_type\' => \'product\',
\'orderby\' => \'menu_order\',
\'order\' => \'ASC\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'product_cat\',
\'field\' => \'term_id\',
\'terms\' => (int)$category,
),
),
);
$product_query = new WP_Query($product_options); //get all products for this category
//OUTPUT YOUR PRODUCTS HERE
}//end foreach
然后,在$product\\u query查询中有一个类别的所有产品。在foreach循环中调整输出,您就一切就绪了。