Hello All,
My markup is simple. I just want to pipe some fields into some DIVs, etc. No strings or arrays, etc.
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="spotRight" class="group">
<div class="spotSingle" id="col1">
<div class="spotlightPic"><?php get_image('image1'); ?></div>
<a class="price gradient" href="#"><?php get('cost1'); ?></a>
<div class="spotlightText"><?php get('description1'); ?></div>
</div>
</div>
<?php endwhile; ?>
The fields were created to have unique names because I will have two, parent DIVs (and will be contained in the loop). I don't want to duplicate them as they are unique.
Any help is appreciated.
Herb