カテゴリの説明を表示する通常のワードプレス コードがあります。
<?php echo category_description( $category_id ); ?>
しかし、Woocommerce カテゴリの説明を表示するにはどうすればよいですか? @@コメントの提案の1つの後、私は追加しました:
<?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
?>
それでも、うまくいきません。