how do i get only 1 post from each category in wordpress

前端 未结 2 899
感动是毒
感动是毒 2021-01-12 09:28

i have a category named news and many subcategories inside it. What i wanna do is to get only 1 posts(newest) from each of those sub categories(including category title, pos

2条回答
  •  日久生厌
    2021-01-12 09:39

    query( array(
            'cat'                 => $news_cat->term_id,
            'posts_per_page'      => 1,
            'no_found_rows'       => true,
            'ignore_sticky_posts' => true,
        ));
    
        ?>
    
        

    name ) ?>

    have_posts() ) : $news_query->the_post() ?>

提交回复
热议问题