File: /home/vmasmheia229/domains/overtoneband.com/html/wp-content/themes/bigcity/portfolio_two.php
<?php
/**
* Template Name: Portfolio two
**/
?>
<?php if (get_post_meta($post->ID, 'header_choice_select', true));{ get_header(get_post_meta($post->ID, 'header_choice_select', true)); } ?>
<div id="portfolio2">
<?php
$portfoli_cat = get_post_meta($post->ID, 'portfolio_cat_id_value', true);
$args=array(
'post_type' => 'portfolio',
'posts_per_page' => -1,
'services_rendered' => $portfoli_cat
);
$loop = new WP_Query($args); ?>
<?php while ($loop->have_posts()) : $loop->the_post(); ?>
<div class="portfolio-item-two">
<div class="portfolio-item-two-container">
<?php if (has_post_thumbnail ()) : ?>
<div class="thumbnail-two">
<a href="<?php the_permalink() ?>" > </a>
<?php the_post_thumbnail('portfolio_two', array('title' => "")); ?>
<?php
$url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
echo '<a href="'.$url.'" rel="" class="fancybox"></a>';
?>
</div><!--#thumbnail-->
<?php endif; ?>
<!-- end portfolio-item -->
<div class="portfolio-item-text-two">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<div class="excerpt">
<?php the_excerpt(); ?>
</div><!--#excerpt-->
</div> <!-- end portfolio-item text-->
</div> <!-- end portfolio-item-container-->
</div> <!-- end portfolio-item-->
<?php endwhile; ?>
<div style="clear:both;"></div>
</div><!--#portfolio2-->
<?php get_footer(); ?>