我有常规的 wordpress 代码来显示类别描述:
<?php echo category_description( $category_id ); ?>
但是我如何显示 Woocommerce 类别描述?@@ 在我添加了一条评论建议后:
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
global $post, $product; $categ = $product->get_categories(); $term = get_term_by ( 'name' , strip_tags($categ), 'product_cat' ); echo $term->description;
} // end while
} // end if
?>
尽管如此,还是不行。