Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

recent_projects

// Add Shortcode
function ah_recent_projects_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'col' => '3',
			'cat' => '',
			'count' => '6',
		),
		$atts
	);

	return '';

}
add_shortcode( 'recent_projects', 'ah_recent_projects_shortcode' );