Skip to content

Instantly share code, notes, and snippets.

@milindmore22
Last active November 14, 2019 14:29
Show Gist options
  • Save milindmore22/4819aa069dce461e845b75413aa3688f to your computer and use it in GitHub Desktop.
Save milindmore22/4819aa069dce461e845b75413aa3688f to your computer and use it in GitHub Desktop.
SQL Query to get post count by post types
SELECT count(*), post_type FROM `wp_posts` WHERE post_type IN( SELECT DISTINCT post_type wp_posts ) GROUP BY post_type ORDER BY `count(*)` DESC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment