Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Open div tag

// Add Shortcode
function open_div_shortcode( $atts ) {

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

	// Code
return '<div>';
}
add_shortcode( 'div', 'open_div_shortcode' );