Hi @macksix,
Comment counts come from caching so once you delete cache or it refreshed automatically, the count will be reset accordingly.
Happy to know that plugin is useful to you. thank you so much!
I actually looked in database and the count was wrong. It was not the cache.
I had to run this query to update the comment count in database after using the plugin:
UPDATE wp_posts
SET comment_count=(SELECT COUNT(*)
FROM wp_comments
WHERE wp_posts.id=wp_comments.comment_post_id)
-
This reply was modified 6 years ago by
macksix.
That’s good you updated else it would have auto-update when the comment gets added next time.
I don’t understand what the point of your reply is. a new comment on one post does not update comment count on all posts. The plugin should update the comment count.