Raw Text Content Edit Remove
mole-jaguar-goose



//Print product brand name with link to the product brand page
function tb_display_product_brand() {
  
  $terms = get_the_terms( get_the_ID(), 'tb_product_brand');
  if(is_array($terms) || is_object($terms)){
	echo '<div class="tb-brand-logo">';
  	foreach ((array) $terms as $term ) {
		echo sprintf( '<a href="%s">%s</a>', get_term_link( $term ), $term->name );
  	}
	echo '</div>';
  }
}

//Add product band name to shop page
add_action('woocommerce_after_shop_loop_item', 'tb_display_product_brand', 10 );

Read 145 times, last 11 hours ago