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