尝试以下代码以在同一页面中显示所有产品
add_filter( \'loop_shop_per_page\', \'new_loop_shop_per_page\', 20 );
function new_loop_shop_per_page( $cols ) {
// Return the number of products you wanna show per page.
$cols = -1;
return $cols;
}
将此代码添加到
functions.php 文件希望这有帮助。