So I have a wordpress taxonomy, lets class it class, among class I have various terms.
Each of the terms has data like name,slug etc. I’m well aware how to fetch that, however terms also have a select box drop down called ‘best buy’, and I have no idea how to get that.
I noticed that there is a custom field called ‘best_buy_classes’ but I’m still lost.
I would just like to get the value of the data in that select box connected to the term and I have no idea how.
I’m pretty sure what you’re asking is how to echo a custom post type and the custom fields for each post.
To grab the custom post type just use a traditional wordpress loop ie.
Within this you can grab your grab your meta_data (custom fields) by using this syntax
I strongly suggest you do a big read of the wordpress codex and check out the Getting Started Section.
Hope I could help!