Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

BS – Jumbotron

Bootstrap jumbotron

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

	// Attributes
	extract( shortcode_atts(
		array(
			'title' => 'Main Title',
		), $atts )
	);

	// Code
return '<div class="jumbotron">
<h1>' . $title . '</h1>
' . $content . '
</div>';

}
add_shortcode( 'jumbotron', 'jumbotron_shortcode' );