View difference between Paste ID: A0Dkwtqu and UWTA71fD
SHOW: | | - or go back to the newest paste.
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' );?> 
7+
    <?php
8
        $images = get_post_meta( $post->ID, 'project_media' );
9
10
        foreach ( $images as $image ) {
11
            echo pods_image( $image, 'original' );
12
        }
13
    ?>
14
  </div>
15
  <div class="fourcol last projectText">
16
    <h2>
17
      <?php the_title(); ?>
18
    </h2>
19
    <?php the_content(''); ?>
20
    <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>
21
  </div>
22
  <?php endwhile; ?>
23
  <?php endif; ?>
24
</div>
25
26
<?php get_footer(); ?>