Advertisement
lintendo

Calling multiple images from a pod field

Jan 23rd, 2013
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div class="container row">
  4.   <?php if (have_posts()) : ?>
  5.   <?php while (have_posts()) : the_post(); ?>
  6.  <div class="eightcol">
  7.     <?php echo pods_image( get_post_meta( $post->ID, 'project_media', true ), 'original' );?>
  8.   </div>
  9.   <div class="fourcol last projectText">
  10.     <h2>
  11.       <?php the_title(); ?>
  12.     </h2>
  13.     <?php the_content(''); ?>
  14.     <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>
  15.   </div>
  16.   <?php endwhile; ?>
  17.   <?php endif; ?>
  18. </div>
  19.  
  20. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement