仅排序Woocomerce主商店页面

时间:2020-08-27 04:29:16

标签: sorting woocommerce

我目前正在使用此代码来更改Woocommerce中所选产品类别的排序顺序。但是我也想在此添加商店的主要页面。

有什么想法要包括主商店页面吗?

谢谢

//choose categories where default sorting will be changed
if (is_product_category( array('41', '3150', '3023' , '3086', '3128', '3132', '3135', '3165', '3182', '3192', '5740', '5741', '6207'))) {
    return 'popularity'; // sort by popularity
    
}else{
return 'title'; // sort by title as the default
    
  } // end if statement
} //end function
add_filter( 'woocommerce_default_catalog_orderby', 'custom_default_catalog_orderby' ); //add the filter

0 个答案:

没有答案