Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

BS – Wells

Wells for Bootstrap. Size allows for wells-sm and wells-lg

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

	// Attributes
	extract( shortcode_atts(
		array(
			'size' => '',
		), $atts )
	);

	// Code
return '<div class="well ' . $size . '">
' . $content . '
</div>';

}
add_shortcode( 'well', 'well_shortcode' );