Answer the question
In order to leave comments, you need to log in
Why is the cycle not working in WordPress?
I'm accessing the WP_Query class to get all posts from the "category" taxonomy with the term "avto".
$postsList = new WP_Query( array(
'post_type' => 'post',
'posts_per_page' => 10,
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'avto'
)
)
) );
if( $postsList->have_posts() ) {
while( $postsList->have_posts() ){
the_post();
the_title();
}
}
wp_reset_postdata();
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