I have created a custom taxonomy (book authors). Now I want to show all book authors and their respective custom fields on a page, how do I do that?
How you do this depends on how you are building. If you are building a theme yourself then you need to add a template for “taxonomy-{$taxonomy}.php”, see WP Template Hierarchy.
If you are using a page builder then you need to see the documentation for that page builder for building an archive template.
Hi! Thank you!
However, I think I might have worded the questions wrong.
I’m working with code. On the front page for instance, I want to have a section which shows all of the names & images of all of my authors. How do I tell to pull of everything that is classified as this specific taxonomy?
Like, through a custom taxonomy I have added this under-category which I can add stuff to. But I cannot in the documentation see what code to use to filter for “uses this taxonomy”. Is it a category? a product type?
You would have to build a query to get the “posts” in the “term(s)” that you want to display. https://developer.wordpress.org/reference/classes/wp_query/