I want to get woocommerce reviews by product id and display it in a template

后端 未结 8 1669
谎友^
谎友^ 2020-12-18 02:04

I want to fetch woocommerce product reviews by product id or anything else and want to display it in a template created by me.

8条回答
  •  抹茶落季
    2020-12-18 02:40

    I tried a lot to get any built-in function for this but i didn't. Then i wrote my own query. It might help you:

    $comment_and_reviews = $wpdb->get_results("SELECT wpc.comment_author,wpc.comment_author_email,wpc.comment_date,wpc.comment_content,wpcm.meta_value AS rating FROM `" . $wpdb->prefix . "comments` AS wpc INNER JOIN  `" . $wpdb->prefix . "commentmeta` AS wpcm ON wpcm.comment_id = wpc.comment_id AND wpcm.meta_key = 'rating' WHERE wpc.comment_post_id = '" . $p_id . "' ");
    

提交回复
热议问题