Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

prueba

// Add Shortcode
function fer_shortcode( $atts , $content = null ) {

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

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

}
add_shortcode( 'prueba', 'fer_shortcode' );