Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

NAU Alumni Home Featured boxes

// Add Shortcode
function al_features_home( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'att1' => '',
			'att2' => '',
			'att3' => '',
		), $atts )
	);

	// Code
//some code
}
add_shortcode( 'al_features', 'al_features_home' );