<?php
$i = 0;
foreach($rows as $row) { if ($i == 1) { ?>
<div class="flexslider slider-album">
<ul class="slides">
<?php foreach ($row['albums_image'] as $image_album) { ?>
<li>
<img src="<?php echo $image_album['sizes']['album-image']; ?>">
</li>
<?php } ?>
</ul>
</div>
<?php } $i++; } ?>
<?php $cur_term = get_queried_object('catalog'); ?>
<!-- Хлебные крошки -->
<?php $term_parents_id = get_ancestors($cur_term->term_id, 'catalog');
foreach ($term_parents_id as $term_parent_id) {
$info_parent = get_term_by( 'term_id', $term_parent_id, 'catalog' ); ?>
<a href="<?php echo get_term_link($info_parent); ?>"><?php echo $info_parent->name; ?></a> »
<?php }
echo $cur_term->name;
?>