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