我正在使用子主题作为默认WooCommerce店面主题。我想将商店页面上显示的产品的最大数量更改为无限制(无分页)。
你会怎么做?
我正在使用子主题作为默认WooCommerce店面主题。我想将商店页面上显示的产品的最大数量更改为无限制(无分页)。
你会怎么做?
您可以将此代码添加到functions.php
:
/**
* Change number of products that are displayed per page (shop page)
*/
add_filter( \'loop_shop_per_page\', \'new_loop_shop_per_page\', 20 );
function new_loop_shop_per_page( $products ) {
// Return the number of products you wanna show per page.
$products = 100;
return $products;
}
更改100 如果需要,可以查看更多信息,因为您不需要分页,只需输入一个较大的数字,就不会进行分页。