Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

amity service box

// Add Shortcode
function service_box( $atts , $content = null ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'title' => '',
			'link' => '',
			'icon' => '',
		), $atts )
	);

	// Code
return $input;
}
add_shortcode( 'service_box', 'service_box' );