Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Crear shortcode

Es muy interesante.

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

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

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

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