Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Artic;e List Shortcode

// Add Shortcode
function wdev_article_list_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
		),
		$atts
	);

}
add_shortcode( 'wdev_article_list', 'wdev_article_list_shortcode' );