File: /home/shaping-sar.ru/public_html/wp-content/themes/beauty spa/builder/template/spa_team.php
<?php
extract( shortcode_atts( array(
'name' => '',
'subtitle' => '',
'description' => '',
'image' => '',
'link' => '',
), $atts ) );
$img = wpb_getImageBySize( array(
'attach_id' => $image,
'thumb_size' => '263x263',
'class' => 'img-responsive'
) );
parse_str(urldecode($link), $social);
?>
<div class="ih-item square effect10 top_to_bottom">
<aside>
<div class="img"><?php if($img) echo $img['thumbnail']; ?></div>
<div class="info">
<div class="info-back">
<h4><?php echo $name; ?></h4>
<strong><?php echo $subtitle; ?></strong>
<p><?php echo $description; ?></p>
<?php if(is_array($social)) : ?>
<ul class="social list-inline">
<?php foreach ($social as $key => $value) {
echo '<li><a href="'.esc_url($value['link']).'"><i class="'.$value['icon'].'"></i></a></li>';
} ?>
</ul>
<?php endif; ?>
</div>
</div>
</aside>
</div>