
Calling multiple images from a pod field
By:
lintendo on
Jan 23rd, 2013 | syntax:
PHP | size: 0.64 KB | hits: 39 | expires: Never
<?php get_header(); ?>
<div class="container row">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="eightcol">
<?php echo pods_image( get_post_meta( $post->ID, 'project_media', true ), 'original' );?>
</div>
<div class="fourcol last projectText">
<h2>
<?php the_title(); ?>
</h2>
<?php the_content(''); ?>
<a <a class="projectLink" href="#" rel="external" target="_blank" href="http://<?php get_custom_field('project_link', TRUE); ?>"><?php get_custom_field('project_link', TRUE); ?></a>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php get_footer(); ?>