Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

MM-shortcode

Para crear shorcodes

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

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

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

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