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

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -