Advertisement
lorro

WooCommerce - Show category description

Jun 11th, 2015
1,085
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2.   // Show category description
  3.   // code goes in functions.php for your child theme
  4.   add_action( 'woocommerce_after_subcategory_title', 'show_cat_description', 12);
  5.   function show_cat_description ($category) {
  6.     $cat_id = $category->term_id;
  7.     $prod_term = get_term($cat_id, 'product_cat');
  8.     $description = $prod_term->description;
  9.     echo '<div class="shop_cat_desc">'.$description.'</div>';
  10.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement