In woocommerce, I would like to show some product attributes on shop page under the product titles. This product attributes are "year", "model" and "oil".
This is what I have for now:
add_action('woocommerce_shop_loop_item_title', 'wh_insertAfterShopProductTitle', 15);
function wh_insertAfterShopProductTitle()
{
global $product;
$abv = $product->get_attribute('pa_year');
if (empty($abv))
return;
echo __($abv, 'woocommerce');
}
Any help is appreciated.