Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

shortcode memory test

// Add Shortcode
function mt_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'id' => '',
			'test' => '',
		),
		$atts,
		'[mt]'
	);

}
add_shortcode( '[mt]', 'mt_shortcode' );