Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

sffdsg

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'catsdd' => 'dew',
		),
		$atts,
		'asert'
	);

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