File: /home/vmasmheia229/domains/overtoneband.com/html/wp-content/themes/bigcity/portfolio.php
<?php
/**
* Template Name: Portfolio
**/
?>
<?php if (get_post_meta($post->ID, 'header_choice_select', true));{ get_header(get_post_meta($post->ID, 'header_choice_select', true)); } ?>
<div id="portfolio" >
<?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">
<?php if (has_post_thumbnail ()) : ?>
<div class="thumbnail">
<a href="<?php the_permalink() ?>"> </a> <?php the_post_thumbnail('portfolio', 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">
<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 echo do_shortcode(html_entity_decode (get_post_meta($post->ID, 'pf_meta_box_text7', true))); ?>
</div><!--#excerpt-->
</div> <!-- end portfolio-item text-->
</div>
<div style="clear:both;"></div>
<div class="portfolio_box_shadow"></div>
<?php endwhile; ?>
</div><!--#portfolio-->
<?php get_footer(); ?>