admin管理员组文章数量:1434924
I made the below for my sidebar to show the subcategories of a specific category (ID 89) of my choosing. Only the subcategories that the post is in appear. Works great.
Now I want to change my posts in to WooCommerce Products, so I'm trying to adapt the code to target WC subcategories instead of post categories. I'm a bit lost on where to start.
<ul>
<?php foreach (get_the_category() as $childcat) : ?>
<?php if (cat_is_ancestor_of(89, $childcat)) { ?>
<li>
<a href="<?php echo get_category_link($childcat->term_id); ?>"><?php echo $childcat->cat_name; ?></a>
</li>
<?php } ?>
<?php endforeach; ?>
</ul>
I made the below for my sidebar to show the subcategories of a specific category (ID 89) of my choosing. Only the subcategories that the post is in appear. Works great.
Now I want to change my posts in to WooCommerce Products, so I'm trying to adapt the code to target WC subcategories instead of post categories. I'm a bit lost on where to start.
<ul>
<?php foreach (get_the_category() as $childcat) : ?>
<?php if (cat_is_ancestor_of(89, $childcat)) { ?>
<li>
<a href="<?php echo get_category_link($childcat->term_id); ?>"><?php echo $childcat->cat_name; ?></a>
</li>
<?php } ?>
<?php endforeach; ?>
</ul>
Share
Improve this question
asked Mar 17, 2019 at 19:05
SeanAUS120SeanAUS120
311 silver badge4 bronze badges
1 Answer
Reset to default 1...to show the subcategories of a specific category (ID 89) ...
Try this
$product_cats = wp_get_post_terms( $post->ID, 'product_cat' );
if ( ! empty( $product_cats ) && ! is_wp_error( $product_cats ) ) { ?>
<ul>
<?php
foreach ($product_cats as $childcat) : ?>
<?php if ($childcat->parent == 89)) { ?>
<li>
<a href="<?php echo get_term_link($childcat->term_id); ?>"><?php echo $childcat->name; ?></a>
</li>
<?php } ?>
<?php endforeach; ?>
</ul>
<?php } ?>
I hope this helps.
版权声明:本文标题:categories - List subcategories of a specific product category (adapting from posts to products taxonomy) 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745645133a2668090.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论