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 -

jsf - How to order SelectItems in custom renderer extending MyFaces HtmlMenuRenderer -

sql server - SQL, get max id of column -