Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Sample Shortcode

Shortcode for Blah Blah Site

// Add Shortcode
function cs_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'color' => 'red',
		),
		$atts,
		'[cs_tag]'
	);

}
add_shortcode( '[cs_tag]', 'cs_shortcode' );