我正在使用 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->name
and $cat->slug
。
最重要的是,我确信我的逻辑也有缺陷。有人可以让我在这里朝着正确的方向前进吗?
谢谢你,谢谢你,谢谢你!