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/archive-testimonials.php
<?php

if ( have_posts() ) {

	while ( have_posts() ) : the_post();
		$link    = get_post_meta( get_the_ID(), 'website_url', true );
		$regency = get_post_meta( get_the_ID(), 'regency', true );
		$author  = get_post_meta( get_the_ID(), 'author', true );
		?>
		<div class="testimonial-item-archive" id="post-<?php the_ID(); ?>">
			<div class="side-left">
				<div class="testimonial-thumbnail">
					<?php
					$thumb = get_the_post_thumbnail( get_the_ID(), 'thumbnail' );
					echo $thumb;
					?>
				</div>
				<div class="testimonial-info">
					<?php
					if ( $author <> '' ) {
						echo '<div class="author">' . $author . '</div>';
					}
					?>
					<div class="regency"><?php echo esc_attr( $regency ) ?></div>
				</div>
			</div>
			<div class="side-right">
				<div class="blockquote"><a href="<?php the_permalink(); ?>"><?php the_title() ?></a></div>
				<div class="description"><?php echo the_content(); ?></div>
			</div>
		</div>
	<?php
	endwhile;
	thim_paging_nav();
}