如问题下方评论所述,
评论在WordPress中没有评级
我继续检查了我的一篇帖子的HTML源代码,并根据CSS类名找出了哪个插件生成了评级。我早该知道的。插件是Tasty Recipes 由WP Tasty提供。
然后我查看了我的SQL数据库,发现评论评级存储在wp_commentmeta 使用“勘误”键:
SELECT * FROM `wp_commentmeta` WHERE meta_key=\'ERRating\'
下面是一个更完整的SQL语句,它显示了如何检索评级:
SELECT c.comment_id,
c.comment_post_id,
c.comment_author,
c.comment_content,
m.meta_key,
m.meta_value
FROM `wp_del201712_comments` AS c
LEFT JOIN wp_del201712_commentmeta m
ON m.comment_id = c.comment_id
WHERE c.comment_post_id = 12066
AND c.comment_approved = \'1\'
AND m.meta_key = \'ERRating\'
只需将post ID替换为您的,即可查看结果。