我目前正在使用此代码来更改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