WC_Brands::show_brand()publicWC 1.0

Displays brand.

Метод класса: WC_Brands{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

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

Код WC_Brands::show_brand() WC 9.4.2

public function show_brand() {
	global $post;

	if ( is_singular( 'product' ) ) {
		$terms       = get_the_terms( $post->ID, 'product_brand' );
		$brand_count = is_array( $terms ) ? count( $terms ) : 0;

		$taxonomy = get_taxonomy( 'product_brand' );
		$labels   = $taxonomy->labels;

		/* translators: %s - Label name */
		echo wc_get_brands( $post->ID, ', ', ' <span class="posted_in">' . sprintf( _n( '%s: ', '%s: ', $brand_count, 'woocommerce' ), $labels->singular_name, $labels->name ), '</span>' ); // phpcs:ignore WordPress.Security.EscapeOutput
	}
}