File: /home/workshopbrain/public_html/wp-content/themes/halfcreative/pagecontent-staff-new.php
<?php $t =& peTheme(); ?>
<?php $content =& $t->content; ?>
<?php $meta =& $content->meta(); ?>
<section class="about" id="<?php $content->slug(); ?>">
<div class="inner">
<h2><?php $content->title(); ?>
<i class="title_line"></i>
</h2>
<?php if (!empty($meta->staff->subtitle)): ?>
<p class="lead"><?php echo $meta->staff->subtitle; ?></p>
<?php endif; ?>
<?php if (!empty($meta->staff->members)): ?>
<?php if ($content->customLoop(
"staff",-1,null,
array(
"post__in" => $meta->staff->members,
"orderby" => "post__in"
),false)):
?>
<ul id="portraits">
<?php while ($content->looping() ) : ?>
<?php $meta =& $content->meta(); ?>
<li>
<?php if (!empty($meta->info->bio)){ ?>
<a href="<?php echo $meta->info->bio; ?>"><?php $content->img(220,180); ?></a>
<?php } else { ?><a href="<?php echo esc_url($meta->info->profile); ?>">
<?php $content->img(220,180); ?></a>
<?php } ?>
<?php if (!empty($meta->info->bio)){ ?>
<a href="<?php echo $meta->info->bio; ?>"><span class="name"><?php $content->title(); ?></span></a><br/>
<?php } else { ?>
<span class="name"><?php $content->title(); ?></span><br/>
<?php } ?>
<?php if (!empty($meta->info->position)): ?>
<span class="poste"><?php echo $meta->info->position; ?></span><br/>
<?php endif; ?>
<span class="whathedo"> <?php if (!empty($meta->info->mailAddition)): ?> <a href="<?php echo esc_url($meta->info->mailAddition); ?>" target="_blank"><i class="icon">Z</i></a> <?php endif; ?>
<?php if (!empty($meta->info->twitter)): ?>
<a href="<?php echo esc_url($meta->info->twitter); ?>" target="_blank"><i class="icon">L</i></a>
<?php endif; ?>
<?php if (!empty($meta->info->linkedin)): ?>
<a href="<?php echo esc_url($meta->info->linkedin); ?>" target="_blank"><i class="icon">I</i></a>
<?php endif; ?>
<?php if (!empty($meta->info->facebook)): ?>
<a href="<?php echo esc_url($meta->info->facebook); ?>" target="_blank"><i class="icon">F</i></a>
<?php endif; ?>
</span>
</li>
<?php endwhile; ?>
<?php $content->resetLoop(); ?>
</ul>
<?php endif; ?>
<?php endif; ?>
</div>
</section>