Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Shortcode

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

	// Attributes
	$atts = shortcode_atts(
		array(
			'type' => 'url',
			'content' => '#',
		),
		$atts
	);

}
add_shortcode( 'mat_ajax', 'mat_ajax' );