File: /www/wwwroot/biographybirthday.com/wp-content/themes/bio/parts/content-single.php
<?php
$person_class = 'person-item';
if(isset($template_args['person_item_class']) && $template_args['person_item_class']){
$person_class = $template_args['person_item_class'];
}
$rank = 0;
if(isset($template_args['rank']) && $template_args['rank']){
$rank = $template_args['rank'];
}
?>
<a href="<?php echo get_permalink();?>" class="face <?php echo $person_class;?>"
style="background: url(<?php echo get_the_post_thumbnail_url('','thumbnail');?>) no-repeat center center; background-size:cover;"
title="<?php the_title();?>"
>
<?php if($rank != 0):?>
<i class="icn icn-star icn-rank"><span class="rank"><?php echo $rank;?></span></i>
<?php endif;?>
<div class="info">
<div class="name">
<?php the_title();?>
</div>
<?php if(isset($template_args['show_category']) && $template_args['show_category']):?>
<div class="title hidden-xs"><?php echo single_category_text();?></div>
<?php endif;?>
</div>
</a>