Get latest post from categories
Ok you can use a foreach loop to return the latest post from each category. Here is how you should do that. <?php $postids = array(); $catids = array( 1, 2, 3 ); // add category ids here. foreach ( $catids as $catid ) { $my_query = new WP_Query( array( ‘cat’ => $catid, ‘ignore_sticky_posts’ => … Read more