Can SQL query get category term meta (WordPress)?
I'm using this query which I found elsewhere that works fine. It basically returns a list of every category that the current author has posted in: global $wpdb; $categories = $wpdb->get_results(" SELECT DISTINCT(terms.term_id) as ID, terms.name, terms.slug, tax.description FROM $wpdb->posts…