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