Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

shortcode-cover-content

// Add Shortcode
function custom_shortcode_cover_content_block( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'issueslug' => '1',
			'excludetag' => 'featured',
		), $atts )
	);

	// Code
code
}
add_shortcode( 'cover-content-block', 'custom_shortcode_cover_content_block' );