Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Simple column shortcode

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

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

	// Code
return '<div class="col-wrap">' . $content . '</div>';
}
add_shortcode( 'col', 'test_col_shortcode' );