I want to get woocommerce reviews by product id and display it in a template
问题 I want to fetch woocommerce product reviews by product id or anything else and want to display it in a template created by me. 回答1: Woocommerce made a reviews out of regular wordpress comments. The simple way is to get a comments of 'post_type' => 'product', that will get raw comment data. In order to display proper woocommerce review out of that you need to apply a callback function witch is 'callback' => 'woocommerce_comments'. The whole thing is: <?php $args = array ('post_type' =>