Shortcode testimonios
// Add Shortcode function apk_testimonio_shortcode( $atts ) { // Attributes extract( shortcode_atts( array( 'id' => '', ), $atts ) ); // Code if ( isset( $id ) ) { return get_the_title( $id ); } } add_shortcode( 'testimonio', 'apk_testimonio_shortcode' );