Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

prueba shortcode

test1

// Add Shortcode
function custom_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'nombre' => 'xxx',
		),
		$atts,
		'testing'
	);

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