File: /home/shaping-sar.ru/public_html/wp-content/themes/beauty spa/builder/template/spa_package.php
<?php
extract(shortcode_atts(array(
'title' => '',
'price' => '',
'item' => '',
), $atts));
parse_str(urldecode($item), $time);
?>
<div class="package wow fadeInLeft animated" data-wow-offset="250" data-wow-delay="200ms" style="visibility: visible;-webkit-animation-delay: 200ms; -moz-animation-delay: 200ms; animation-delay: 200ms;">
<h5><?php echo esc_attr($title); ?></h5>
<ul class="list-default">
<?php
if(is_array($time)) {
foreach ($time as $key => $value) {
if(isset($value['item'])) echo '<li>'.esc_attr($value['item']).'</li>';
}
}
?>
</ul>
<strong class="price"><small>$</small><?php echo esc_attr($price) ?></strong>
</div><!-- end package -->