Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

srps

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

	// Attributes
	$atts = shortcode_atts(
		array(
			'srp2' => 'Hello SRP2',
			'srp3' => 'Hello SRP3',
		),
		$atts,
		'srp2'
	);

	srp

}
add_shortcode( 'srp2', 'srp2' );