Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

BS – Page Title

Page title output of h1 tags for Bootstrap

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

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

}
add_shortcode( 'h1', 'h1_shortcode' );