-
Website
http://blog.andreaolivato.net/ -
Original page
http://blog.andreaolivato.net/wordpress/clean-wordpress-database-removing-empty-categories.html -
Subscribe
All Comments -
Community
-
Top Commenters
-
Tristan Antipyrine
1 comment · 1 points
-
orta
1 comment · 2 points
-
malappuraminfo
1 comment · 1 points
-
torh
1 comment · 1 points
-
Andy Feliciotti
1 comment · 6 points
-
-
Popular Threads
-
Create your first API set in PHP
2 weeks ago · 2 comments
-
Create your first API set in PHP
A favour in return: I had a stack of comments laying around from posts that I had deleted. The following SQL allows you to find orphaned comments
SELECT * FROM `wp__comments`
WHERE NOT EXISTS (SELECT ID from wp_posts where wp_comments.comment_post_ID = wp_posts.ID)