plugins - Get list of attributes of a specific woocommerce product -
i have array of product ids , want attributes of each product in array.
is possible list of attributes product id ?
i found solution.
use get_post_meta() attribute , use get_terms() list of term values like:
$attribute = get_post_meta( $products->post->id, '_product_attributes', true); get_terms($attribute);
Comments
Post a Comment