php [WooCommerce Core]更改每页显示的产品数量

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php [WooCommerce Core]更改每页显示的产品数量相关的知识,希望对你有一定的参考价值。

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;
}

以上是关于php [WooCommerce Core]更改每页显示的产品数量的主要内容,如果未能解决你的问题,请参考以下文章

php [WooCommerce Core]更改每页显示的产品数量

php [WooCommerce Core]每行更改产品数量(Woo主题)

php [WooCommerce Core]每行更改产品数量(Woo主题)

php [WooCommerce Core]每行更改产品数量(Woo主题)

php [WooCommerce Core]更改每行产品数量(自定义主题)

php [WooCommerce Core]更改每行产品数量(自定义主题)