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' );