答案 0 :(得分:2)
外观>自定义>产品页面>取消选中产品分页
答案 1 :(得分:0)
您需要更改每页的产品数量。您可以使用以下代码覆盖它。把它放在活动主题的function.php文件中
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 = 90;
return $cols;
}
答案 2 :(得分:0)
<?php
remove_action( 'woocommerce_before_shop_loop', 'storefront_woocommerce_pagination', 30 );
?>
答案 3 :(得分:0)
另一种方式(在 #include <iostream>
void a()
{
std::cout << "something" << std::endl;
}
void b(void (*function))
{
function();
}
int main()
{
b(&a);
return 0;
}
或插件中):
functions.php