Crea Shortcodes
// Add Shortcode
function boluda_shortcode( $atts , $content = null ) {
// Attributes
$atts = shortcode_atts(
array(
'nombre' => 'señor',
),
$atts
);
return '¿Hola qué tal? '.$atts[nombre].$content;
}
add_shortcode( 'prueba', 'boluda_shortcode' );