Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Entering Paragraph Shortcode

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

	// Code
return '<p class="entering-paragraph">'. $content .'</p>';
}
add_shortcode( 'enter', 'custom_shortcode' );