主页上的评论计数不正确

发布于 2024-10-31 06:46:14 字数 117 浏览 0 评论 0原文

在我更新了由 WordPress 提供支持的博客并删除了我博客的所有评论之后。我发现了一个错误的东西。我的博客的每个条目仍然显示以前的评论计数。但是我已经通过phpmyadmin删除了该网站的所有评论。如何让评论数为零?

after i updated my blog which is powerd by wordpress and deleted all the comments of my blog. i found a wrong thing. each entry of my blog still shows the previous Comment Count number。but i have delted all the comment of the site by the phpmyadmin. how to make the Comment Count number to zero?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

z祗昰~ 2024-11-07 06:46:14

您还应该将 wp_posts 表中的 comment_count 列 更新为 0

此列包含与帖子相关的评论数量,因为您已经删除了所有评论,因此您还应该将此字段值更新为 0

UPDATE wp_posts SET comment_count=0

You should also update the comment_count column to 0 in wp_posts table.

This column contains the number of comment associative with the post since you already deleted all the comments hence you should also update this field value to 0

UPDATE wp_posts SET comment_count=0
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文