Answer the question
In order to leave comments, you need to log in
How to display all posts of a certain taxonomy in WordPress?
Good evening.
My task is to display all posts with a category taxonomy.
After reading the official documentation, I only found the ability to display posts with certain terms in taxonomies:
$query = new WP_Query( array(
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'avto'
)
)
) );
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question