WordPress Woocommerce Show attributes on shop page
I want to add some attributes to the shop page of wordpress. This code i found on Stackoverflow, is shows all attribute labes but on all the same attribute names. add_action('woocommerce_after_shop_loop_item_title','add_attribute'); function add_attribute() { global $product; $product_attributes = array( 'pa_country','pa_class','pa_faction','pa_gender'…