Advertisement
pedronave

Woocommerce Output current product's category

Feb 19th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2. function pn_wc_single_product(){
  3.  
  4.     $product_cats = wp_get_post_terms( get_the_ID(), 'product_cat' );
  5.  
  6.     if ( $product_cats && ! is_wp_error ( $product_cats ) ){
  7.  
  8.         $single_cat = array_shift( $product_cats ); ?>
  9.  
  10.   <h2 itemprop="name" class="product_category_title"><span><?php echo $single_cat->name; ?></span></h2>
  11. <?php
  12.  }
  13. add_action( 'woocommerce_single_product_summary', 'pn_wc_single_product', 2 );
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement