Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Tripadvisor Shortcode

Allow use of Tripadvisor’s Widgets on your WordPress website

// Add Shortcode
function tripadvisor_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'wtype' => 'certificateOfExcellence',
			'lang' => 'en_US',
			'display_version' => '2',
		),
		$atts,
		'tripadvisor'
	);

	echo '<div id="TA_certificateOfExcellence966" class="TA_certificateOfExcellence">
	<ul id="YFuYnzg" class="TA_links bvxALY">
	<li id="LeYJ2c" class="XnCHf6V">
	<a target="_blank" href="https://www.tripadvisor.com/Hotel_Review-g608474-d1149743-Reviews-Fariyas_Resort_Lonavala-Lonavala_Pune_District_Maharashtra.html"><img src="https://www.tripadvisor.com/img/cdsi/img2/awards/CoE2017_WidgetAsset-14348-2.png" alt="TripAdvisor" class="widCOEImg" id="CDSWIDCOELOGO"/></a>
	</li>
	</ul>
	</div>'
	wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true );
	

}
add_shortcode( 'tripadvisor', 'tripadvisor_shortcode' );