Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Simple Enclosing Shortcode

Enclosing shortcode with no attributes

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

	return '<h2 class="line-heading"><span>' . $content . '</span></h2>';

}
add_shortcode( 'headline', 'headline_shortcode' );