prueba shortcode
test1
// Add Shortcode function custom_shortcode( $atts ) { // Attributes $atts = shortcode_atts( array( 'nombre' => 'xxx', ), $atts, 'testing' ); } add_shortcode( 'testing', 'custom_shortcode' );
test1
// Add Shortcode function custom_shortcode( $atts ) { // Attributes $atts = shortcode_atts( array( 'nombre' => 'xxx', ), $atts, 'testing' ); } add_shortcode( 'testing', 'custom_shortcode' );