Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Custom shortcodes

Custom shortcode

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'arg0' => 'undefined',
			'arg1' => 'undefined',
		),
		$atts,
		'Custom_shortcode'
	);

	// custom code

}
add_shortcode( 'Custom_shortcode', 'custom_shortcode' );