shorcodes
// Add Shortcode
function wilmer_shortcode( $atts , $content = null ) {
// Attributes
$atts = shortcode_atts(
array(
'nombre' => 'señor',
),
$atts
);
return 'hola que ase'.$atts[nombre].$content;
}
add_shortcode( 'prueba', 'wilmer_shortcode' );