woocommerce get post terms product

Solutions on MaxInterview for woocommerce get post terms product by the best coders in the world

showing results for - "woocommerce get post terms product"
Mike
11 Jul 2020
1$term_obj_list = get_the_terms( $post->ID, 'taxonomy' );
2$terms_string = join(', ', wp_list_pluck($term_obj_list, 'name'));
3