Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

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