您可以将此代码添加到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 如果需要,可以查看更多信息,因为您不需要分页,只需输入一个较大的数字,就不会进行分页。
Change the number of products displayed per page