Sony News
// WP_Query arguments $args = array( 'post_type' => array( 'post' ), 'post_status' => array( 'publish' ), 'posts_per_page' => '3', 'ignore_sticky_posts' => false, 'order' => 'DESC', 'orderby' => 'date', ); // The Query $news = new WP_Query( $args ); // The Loop if ( $news->have_posts() ) { while ( $news->have_posts() ) { $news->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();