Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

HeDo Shortcode Testimonial

// Add Shortcode
function testimonial_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'id' => '73',
		), $atts )
	);
}
add_shortcode( 'testimonial', 'testimonial_shortcode' );