开发者

Incorrect Comment Count number on main page

开发者 https://www.devze.com 2023-02-23 14:39 出处:网络
after i updated my blog which is powerd by wordpress and deleted all th开发者_StackOverflow社区e comments of my blog. i found a wrong thing. each entry of my blog still shows the previous Comment Coun

after i updated my blog which is powerd by wordpress and deleted all th开发者_StackOverflow社区e 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?


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
0

精彩评论

暂无评论...
验证码 换一张
取 消