File: /home/dermova/www/me/wp-content/themes/DERMOVIVA WP THEME AR/temp-inside-pages-01.php
<?php
/* Template Name: Two Column Content 01 */
get_header(); ?>
<br class="breakline"/>
</div><!-- header -->
<div id="content">
<div class="mainholder01">
<div class="contentholder txtclrblack bgwhite">
<div class="breadcrumb"><a href="http://dermoviva.com/me">Home</a> > <?php the_title(); ?></div>
<?php
if( have_posts() ) : while( have_posts() ) : the_post();
$postId = get_the_ID();
$thetitle = get_the_title();
$thecontent = get_the_content();
echo '<div class="contentcol03"><h1>'. $thetitle .'</h1><p> </p>';
echo '<p>'. do_shortcode($thecontent) .'</p></div><!-- contentcol03 -->';
echo '<div class="contentcol03">';
$featureimg = get_field('feature_image',$postId);
if(!empty($featureimg)) {
echo '<img src="'. $featureimg .'" class="imgadapt" />';
}
echo '</div><!-- contentcol03 -->';
endwhile; endif;
wp_reset_postdata();
?>
<br class="breakline">
<?PHP
$content2 = get_field('content_2',$postId);
if(!empty($content2)) {
echo do_shortcode($content2);
}
?>
<br class="breakline">
</div><!-- contentholder -->
</div><!-- mainholder01 -->
</div><!-- content -->
<?php get_footer(); ?>
<!-- HOME -->