woocommerce给产品手动添加评论

第一步:添加评论

INSERT INTO wp_comments (comment_post_ID, comment_author, comment_author_email, comment_date, comment_content, comment_approved)
VALUES
(500, ‘John Doe’, ‘johndoe@outlook.com’, ‘2025-04-2 13:45:26’, ‘Cool looking lights
It’s very pretty. Fast delivery and easy install and look great.’, 1);

第二步:添加评论星级

INSERT INTO wp_commentmeta (comment_id, meta_key, meta_value)
VALUES (500, ‘rating’, 5);

此时,添加完星级后,在产品页面可以显示评论内容,但是还未统计评论数量

第三步:在woocommerce评价列表,将评价移入回收站,然后再还原

完成

评论

发表回复