0

我正在使用 WooCommerce 购物车插件,并为默认的 WooCommerce 模板编写了我自己的主题文件覆盖,以便进行更多控制。所以我从头开始创建了一个侧边栏,列出了所有产品类别。它工作得很好:

<ul class="sidebar-list">
    <?php 
        $all_categories = get_categories( 'taxonomy=product_cat&hide_empty=0&hierarchical=1' );

        foreach ($all_categories as $cat) {
            echo '<li><a href="'. get_term_link($cat->slug, 'product_cat') .'"><span>'. $cat->name .'</span></a>';
        }
    ?>
</ul>

但是,上述foreach循环不会输出任何类型的“当前类别”属性(如列表项上的类)。因此,我尝试编写一些 PHP 来获取当前产品类别并将其在 foreach 循环中与正在显示的类别进行比较,如果它们匹配,则将“当前”类添加到列表项中。

<ul class="sidebar-list">
    <?php 
        $all_categories = get_categories( 'taxonomy=product_cat&hide_empty=0&hierarchical=1' );

        $terms = get_the_terms( $post->ID, 'product_cat' );

        foreach ($terms as $term) {
            $product_cat = $term->term_id;
            break;
        }

        foreach ($all_categories as $cat) {
            echo '<li class="';

            if ( $product_cat == $cat->id ) {
                echo "current";
            }   

            echo '"><a href="'. get_term_link($cat->slug, 'product_cat') .'"><span>'. $cat->name .'</span></a>';
        }
    ?>
</ul>

正如您可能从我这里收集到的那样,它不起作用。

我知道我有一个问题,我什至无法抓住$cat->id,因为如果我自己回显它,我什么也得不到。似乎我只能访问$cat->nameand $cat->slug

最重要的是,我确信我的逻辑也有缺陷。有人可以让我在这里朝着正确的方向前进吗?

谢谢你,谢谢你,谢谢你!

4

1 回答 1

0

您可以使用wp_list_categories

current-cat仅在存档/类别页面上将CSS 类添加到活动类别:

<?php
    $args = array(
        'taxonomy' => 'product_cat',
        'hide_empty' => 0,
        'hierarchical' => 1
    );
    wp_list_categories($args);
?>

将 CSS 类添加到所有返回结果的current-cat页面上的活动类别:get_the_category()

<?php
    $category = get_the_category();
    $current_category_ID = isset($category->cat_ID) ? $category->cat_ID : 0;
    $args = array(
        'taxonomy' => 'product_cat',
        'hide_empty' => 0,
        'hierarchical' => 1,
        'current_category' => $current_category_ID
    );
    wp_list_categories($args);
?>
于 2013-10-22T02:41:42.070 回答