Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

DARQ Shortcode

// Add Shortcode
function darq_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'cat' => '2018',
		),
		$atts
	);

}
add_shortcode( 'darq', 'darq_shortcode' );