Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Columns

Create columns and specify a column number 1-12.

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

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

	// Code
return '<div class="col-sm-' . $size . '">' . $content . '</div>';

}
add_shortcode( 'col', 'col_shortcode' );