这是我用来用缩略图显示所有产品类别的代码:
<?php
$cats = get_terms(\'product_cat\', array(
\'hide_empty\' => 0,
\'orderby\' => \'name\'
));
?>
<div class="container">
<?php foreach($cats as $cat) : ?>
<?php global $wp_query;
if($cat->category_parent == 0) {
$category_id = $cat->term_id;
$thumbnail_id = get_woocommerce_term_meta( $cat->term_id, \'thumbnail_id\', true );
$image = wp_get_attachment_url( $thumbnail_id );
echo \'<li><a href="\'. get_term_link($cat->slug, \'product_cat\') .\'">\'. $cat->name .\'</a>\';
echo \'<img src="\'.$image.\'" width="45px" height="45px" />\';
}
?>
<?php endforeach; ?>
</div>
有谁能帮助我如何划分子类别的类别,同时只有缩略图子类别,例如:类别(文本)
子类别(缩略图)
子类别(缩略图)