Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Col-2

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

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

}
add_shortcode( 'col_two_first', 'col_two_first_shortcode' );