所有上传到我的购物网站的产品都属于2个父母类别 . 在产品页面上,我只想显示一个 . 如何仅指定一个类别及其所属的子类别?

示例:产品1属于

  • 父猫A和儿童猫A1

  • 父猫B和儿童猫B1

如何在产品页面上仅显示Parent CatB和Child Cat B1?

Meta.php

<?php
    $size = count( get_the_terms( $post->ID, 'product_cat' ) );
    echo $product->get_categories( ', ', '<span class="posted_in">' . _n( 'Category:', 'Categories:', $size, 'woocommerce' ) . ' ', '.</span>' );
    ?>