enjoylife
enjoylife

Reputation: 5479

Incorrect Comment Count number on main page

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?

Upvotes: 0

Views: 798

Answers (1)

Shakti Singh
Shakti Singh

Reputation: 86356

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

Upvotes: 2

Related Questions