Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Related Query

// WP_Query arguments
$args = array(
	'post_type'              => array( 'articles' ),
	'post_status'            => array( 'publish' ),
	'posts_per_page'         => '3',
	'ignore_sticky_posts'    => false,
	'order'                  => 'DESC',
	'orderby'                => 'date',
);

// The Query
$query_related = new WP_Query( $args );

// The Loop
if ( $query_related->have_posts() ) {
	while ( $query_related->have_posts() ) {
		$query_related->the_post();
		// do something
	}
} else {
	// no posts found
}

// Restore original Post Data
wp_reset_postdata();