WC_Brands::brand_description()publicWC 1.0

Displays brand description.

Method of the class: WC_Brands{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Brands = new WC_Brands();
$WC_Brands->brand_description();

WC_Brands::brand_description() code WC 9.5.1

public function brand_description() {
	if ( ! is_tax( 'product_brand' ) ) {
		return;
	}

	if ( ! get_query_var( 'term' ) ) {
		return;
	}

	$thumbnail = '';

	$term      = get_term_by( 'slug', get_query_var( 'term' ), 'product_brand' );
	$thumbnail = wc_get_brand_thumbnail_url( $term->term_id, 'full' );

	wc_get_template(
		'brand-description.php',
		array(
			'thumbnail' => $thumbnail,
		),
		'woocommerce',
		WC()->plugin_path() . '/templates/brands/'
	);
}