Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2013
1,952
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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
  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(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement