Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Shortcode

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'foo' => 'bar',
		),
		$atts,
		''
	);

}
add_shortcode( '', 'custom_shortcode' );