add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 ); function new_loop_shop_per_page( $cols ) { // $cols contains the current number of products per page based on the value stored on Options -> Reading // Return the number of products you wanna show per page. $cols = 9; return $cols; }
首先,点击左上角的 “自定义主题”,使用上面代码:
把上面代码加入你主题的functions.php
的结尾,那个 “9” 可以改成任意你想要的数量。