Created
April 19, 2017 00:56
-
-
Save hayakawa/df8545d941a916cf39e81c07256bb9bb to your computer and use it in GitHub Desktop.
How to get category infomation from wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT a.term_id | |
, a.name | |
, a.slug | |
, b.count | |
FROM wp_terms a | |
LEFT JOIN wp_term_taxonomy b | |
ON a.term_id = b.term_id | |
WHERE b.taxonomy = 'category'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment