Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

snip1

desc

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
		),
		$atts,
		'taf'
	);

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