限制在 woocommerce 产品类别页面中显示的产品数量
Limit the number of products displayed in woocommerce product category pages
我正在使用 sober 主题,我想限制每个类别的类别页面上显示的产品数量。
目前单页显示的产品超过10个,如果我想限制到10个怎么办?我能够限制产品描述页面上相关产品的数量。
如何限制类别页面上的产品数量?
要设置 woocommerce 产品类别存档页面每页的项目数,您将使用:
add_filter( 'loop_shop_per_page', 'items_per_page_in_product_category_archives', 900 );
function items_per_page_in_product_category_archives( $limit ) {
if( is_product_category() )
$limit = 10;
return $limit;
}
代码进入您的活动子主题(或活动主题)的 function.php 文件。已测试并有效。
我正在使用 sober 主题,我想限制每个类别的类别页面上显示的产品数量。
目前单页显示的产品超过10个,如果我想限制到10个怎么办?我能够限制产品描述页面上相关产品的数量。
如何限制类别页面上的产品数量?
要设置 woocommerce 产品类别存档页面每页的项目数,您将使用:
add_filter( 'loop_shop_per_page', 'items_per_page_in_product_category_archives', 900 );
function items_per_page_in_product_category_archives( $limit ) {
if( is_product_category() )
$limit = 10;
return $limit;
}
代码进入您的活动子主题(或活动主题)的 function.php 文件。已测试并有效。