限制woocommerce产品类别页面中显示的产品数量

问题描述 投票:2回答:1

我正在使用清醒的主题,我想限制每个类别的类别页面上显示的产品数量。

目前它在一个页面上显示超过10个产品,如果我想将其限制为10,该怎么办?我能够在产品描述页面上限制相关产品的数量。

如何限制类别页面上的产品数量?

php wordpress woocommerce product custom-taxonomy
1个回答
1
投票

要设置woocommerce产品类别存档页面的每页项目数,您将使用:

add_filter( 'loop_shop_per_page', 'items_per_page_in_product_category_archives', 900 );
function items_per_page_in_product_category_archives( $limit ) {
    if( is_product_category() )
        $limit = 10;

    return $limit;
}

代码位于活动子主题(或活动主题)的function.php文件中。经过测试和工作。

© www.soinside.com 2019 - 2024. All rights reserved.