How do I fetch all tag names (with ID and count) from all published posts?
I know there is wp_tag_cloud
but I only want an array of all tags.
How do I fetch all tag names (with ID and count) from all published posts?
I know there is wp_tag_cloud
but I only want an array of all tags.
Check out
get_terms()
to retrieve the terms in a given taxonomy:http://codex.wordpress.org/Function_Reference/get_terms
Examples:
This works for me along with tags count.