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' );