如何避免产品在WooCommerce中的分类限制?

时间:2015-05-10 13:03:31

标签: php wordpress-plugin woocommerce wordpress

最近我遇到了一个有趣的效果,似乎与默认设置一致。

当您只是按混合顺序显示产品时,没关系,但是当您尝试为它们创建自定义类别时 - 我正在获得循环限制:类别列表的选项卡中只显示12个产品。 E.g:

“男士手表”标签中有12项手表:

here are 12 items of watches

但事实上,其中有16个:

enter image description here

通常我会使用标准格式添加类别:

enter image description here

并向他们添加产品:

enter image description here

在我的functions.php文件中,我添加了一行来全局扩展产品数量,但它没有帮助:

enter image description here

为什么按类别提供的产品数量有限?在哪里可以找到负责此案例的代码?

1 个答案:

答案 0 :(得分:1)

您可以尝试两种方法:

  1. 如果您按类别过滤,则可能正在使用
  2. ["product_category"]

    其中默认的per_page属性设置为12.您可以通过指定per_page =" 16"来覆盖它。

    1. 尝试在functions.php文件中设置add_filter函数的优先级,如
    2. add_filter("loop_shop_per page", create_function('$cols', 'return 16'), 20);

      希望你能开始工作。

      问候