如何在 product_cat 页面上添加下一个上一个按钮以导航到其他产品类别(Woocommerce)

How to add next prev button on product_cat page to navigate to other product categories(Woocommerce)

我正在尝试添加下一个按钮以切换到第二个类别。 因为我在单个页面上显示了 1 个单一类别的所有产品。 需要帮助....

好的,根据 wordpress stackexchange...

$this_category = get_queried_object();
$categories = get_categories();

foreach( $categories as $position => $cat ) :
    if( $this_category->term_id == $cat->term_id ) :
        $next_cat = $position + 1;
        $prev_cat = $position - 1;
        break;
    endif;
endforeach;

$next_cat = $next_cat == count($categories) ? 0 : $next_cat;
$prev_cat = $prev_cat < 0 ? count($categories) - 1 : $prev_cat;

回声'previous: '。 get_term_link($类别[$prev_cat]); 回声 'next: ' 。 get_term_link( $类别[$next_cat]);

...应该可以了:)