File "instagram.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/kapee-extensions/templates/shortcodes/instagram.php
File size: 1.17 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Instagram Template
*/
if ( is_wp_error($instagram_data) ) {
echo esc_html( $instagram_data->get_error_message() );
}else{ ?>
<section id="<?php echo esc_attr($id);?>" class="<?php echo esc_attr($class);?>">
<?php if( ! empty( $title ) ) { ?>
<div class="section-heading">
<h2><?php echo esc_html($title); ?></h2>
</div>
<?php } ?>
<div class="instagram-wrap <?php echo esc_attr( $slider_class ); ?>">
<?php $count = 0; $username = '';
foreach( $instagram_data as $item ){
if( $rows > 1 && $count % $rows == 0 ){
echo '<div class="slide-group">';
}
$username = $item['username'];
$image_url = $item['image_url']; ?>
<div class="instagram-picture-wrap <?php echo esc_attr($column_class); ?>">
<div class="instagram-picture">
<a href="<?php echo esc_url( $item['image_link'] ); ?>" target="<?php echo esc_attr( $target ); ?>"></a>
<?php echo kapee_get_src_image_loaded($image_url);?>
</div>
</div>
<?php
if( $rows > 1 && ($count % $rows == $rows - 1 || $count == $number_of_photos - 1) ){
echo '</div>';
}
$count++;
} ?>
</div>
</section>
<?php }