File: /home/dwauav0tm6jp/hosted/gazzocpa_com/wp-content/themes/theme1429/single-testi.php
<?php get_header(); ?>
<h2><span><strong><?php the_title(); ?></strong></span></h2>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php
$custom = get_post_custom($post->ID);
$testiname = $custom["testimonial-name"][0];
$testiinfo = $custom["testimonial-info"][0];
?>
<blockquote class="testi-single" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post-content">
<?php echo '<div class="testi-pic">'; the_post_thumbnail('testi-thumbnail'); echo '</div>'; ?>
<?php the_content(); ?>
<span class="name-testi single-testi">
<span class="user"><?php echo $testiname; ?></span>
<?php echo $testiinfo; ?>
</span>
</div>
</blockquote>
<?php endwhile; else: ?>
<div class="no-results">
<p><strong>There has been an error.</strong></p>
<p>We apologize for any inconvenience, please <a href="<?php bloginfo('url'); ?>/" title="<?php bloginfo('description'); ?>">return to the home page</a> or use the search form below.</p>
<?php get_search_form(); ?> <!-- outputs the default Wordpress search form-->
</div><!--noResults-->
<?php endif; ?>
<nav class="oldernewer">
<div class="older">
<?php previous_post_link('%link', '« Previous post') ?>
</div><!--.older-->
<div class="newer">
<?php next_post_link('%link', 'Next Post »') ?>
</div><!--.newer-->
</nav><!--.oldernewer-->
<?php get_footer(); ?>