Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

snippet1

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'id' => '',
		), $atts )
	);
}
add_shortcode( 'ahtls', 'custom_shortcode' );