HEX
Server: Apache
System: Linux webd006.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: zwafgyp (177615)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/zwafgyp/dodolodge-net/wp-content/themes/hotel-wp/testimonials/single-testimonials.php
<div class="testimonial-item-archive" id="post-<?php the_ID(); ?>">
	<?php while ( have_posts() ) : the_post(); ?>
		<?php $testimonial_id = get_the_ID(); ?>
		<div class="side-left">
			<div class="testimonial-thumbnail">
				<?php $thumb = get_the_post_thumbnail( get_the_ID(), 'thumbnail' );
				echo $thumb; ?>
			</div>
			<?php
			$regency = get_post_meta( $testimonial_id, 'regency', true );
			$author  = get_post_meta( $testimonial_id, 'author', true );
			echo '<div class="testimonial-info">';
			echo '<div class="author">' . esc_html( $author ) . '</div>';
			echo '<div class="regency">' . esc_html( $regency ) . '</div>';
			echo '</div>';
			?>
		</div>
		<div class="side-right">
			<div class="blockquote"><?php echo get_the_title() ?></div>
			<div class="description">
				<?php the_content(); ?>
			</div>
		</div>

		<div class="clear"></div>
	<?php endwhile; // end of the loop. ?>
</div>