KernelCurry
KernelCurry

Reputation: 1297

WordPress - Taxonomy MetaData RETRIEVE

I am using https://github.com/bainternet/My-Meta-Box to create MetaData in my taxonomy "group"

How do I retrieve that data? As of right now I have each group ID, but i have no idea how to retrieve the MetaData.

Upvotes: 1

Views: 179

Answers (1)

KernelCurry
KernelCurry

Reputation: 1297

Just figured it out. Unfortunately, https://github.com/bainternet/My-Meta-Box Uses the WP_Options table in the database, not the Meta table, like it should.

Here is how to get the information.

<?$meta = get_option('tax_meta_'.$category->term_id)?>

Upvotes: 2

Related Questions