Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Tab Content Div

Tabs with Content

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

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

	// Return image HTML code
		return '<div id="' . $atts['id'] . '" class="tab-content">' .  do_shortcode($content) . '</div>';
	

}
add_shortcode( 'tab_div', 'tab_div_shortcode' );