php 在分页之前每页更改Woocommerce产品

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在分页之前每页更改Woocommerce产品相关的知识,希望对你有一定的参考价值。

/* Changing Woocommerce products per page before pagination */
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 = 20;
  return $cols;
}
add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 );

以上是关于php 在分页之前每页更改Woocommerce产品的主要内容,如果未能解决你的问题,请参考以下文章

php 在Storefront中每页更改WooCommerce产品

php 在Storefront中每页更改WooCommerce产品

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

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

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

今天发现一个很奇怪的问题,在使用easyui datagrid时,行号在分页时不起作用。