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();
}