Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Box Shortcode

Boxes for travelfreak

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

	// Attributes
	$atts = shortcode_atts(
		array(
			'type' => '',
			'icon' => '',
		),
		$atts,
		'[box]'
	);

	// Return custom embed code
	return '<div class="cb-alert cb-blue"><b>NOTE:</b>' . $content . '</div>';

}
add_shortcode( '[box]', 'box_shortcode' );