woocommerce调用分类描述
作者:互联网
woocommerce是在wordpress基础上开发的,有些函数是通用的,有些需要自己调用,比如文章分类用category_description()就可以调用,而woocommerce的产品分类描述可能需要用下面的代码才能显示出来
<?php $args = array( 'taxonomy' => 'product_cat' ); $terms = get_terms('product_cat', $args); $count = count($terms); if ($count > 0) { foreach ($terms as $term) { echo $term->description; } }?>
标签:count,product,woocommerce,terms,description,调用,描述 来源: https://www.cnblogs.com/ytkah/p/12021216.html