Guest User

Untitled

a guest
Jun 22nd, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. add_filter( 'woocommerce_product_description_heading','product_description_tab', 10, 1 );
  2.  
  3. function product_description_tab( $title ) {
  4. global $post, $product;
  5. $brands = wp_get_post_terms( get_the_ID(), 'pwb-brand' );
  6. foreach( $brands as $brand )
  7. return $post_excerpt = $brand->name.' - '. $post->post_title;
  8. }
Add Comment
Please, Sign In to add comment