Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Shortcode Self-enclosing attributos

// Add Shortcode
function juan_shortcode2( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'nombre' => 'Señor',
		),
		$atts
	);

	return '¿Hola qué tal? '.$atts[nombre];

}
add_shortcode( 'pruebab', 'juan_shortcode2' );