У меня есть этот код в моей functions.php для моего сайта Обзор продукта:
add_action('woocommerce_shop_loop_item_title', 'wotom_show_attributes_title', 15);
function wotom_show_attributes_title()
{
global $product;
$ab1 = $product->get_attribute ('pa_weingut');
$ab2 = $product->get_attribute ('pa_rebsorte');
$ab3 = $product->get_attribute ('pa_dac-lage');
$ab4 = $product->get_attribute ('pa_jahrgang');
$ab5 = $product->get_attribute ('pa_region');
echo "<h1 class='shoppage_header1'>" . __($ab1,'woocommerce') . "</h1>";
echo "<h1 class='shoppage_header2'>" . __($ab2,'woocommerce') . "</h1>";
echo "<h2 class='shoppage_sub1'>" . __($ab3,'woocommerce') . "</h2>";
echo ($ab5) ? "<h2 class='shoppage_sub2'>" . __($ab4,'woocommerce') . "</h2>" : "";
}
Обновленный код! но echo($ab5) ? ...
не работает.