Добавление в микроразметку woocommerce брэнда

	<?php 
		add_filter( 'woocommerce_structured_data_product', 'omai_woocommerce_structured_data_product', 10, 2 );
		function omai_woocommerce_structured_data_product( $markup, $product ) {
			/* By default, we assume all products sold in the ecommerce are in
			new condition */
			if ( empty( $markup[ 'brand' ] ) ) {
				$markup[ 'brand' ] = 'ООО БРЭНД';
			}
			return $markup;

		} ?>