| Server IP : 66.29.153.156 / Your IP : 216.73.216.70 Web Server : LiteSpeed System : Linux premium322.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64 User : lastyfjz ( 1521) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/lastyfjz/dermalaserclinic.co.uk/wp-content/themes/cherie/sbi/ |
Upload File : |
<?php
/**
* Smash Balloon Instagram Feed Main Template
* Creates the wrapping HTML and adds settings as attributes
*
* @version 2.2 Instagram Feed by Smash Balloon
*
*/
// Don't load directly
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
$feed_styles = SB_Instagram_Display_Elements::get_feed_style( $settings ); // already escaped
$sb_images_style = SB_Instagram_Display_Elements::get_sbi_images_style( $settings ); // already escaped
$image_resolution_setting = $settings['imageres'];
$cols_setting = $settings['cols'];
$num_setting = $settings['num'];
$icon_type = $settings['font_method'];
/**
* Add HTML or execute code before the feed displays.
* sbi_after_feed works the same way but executes
* after the feed
*
* @param array $posts Instagram posts in feed
* @param array $settings settings specific to this feed
*
* @since 2.2
*/
do_action( 'sbi_before_feed', $posts, $settings );
if ( ! empty( $header_data ) && $settings['showheader'] && $settings['headeroutside'] ) {
include sbi_get_feed_template_part( 'header', $settings );
}
?>
<div id="sb_instagram" class="sbi sbi_col_<?php echo esc_attr( $cols_setting ); ?> <?php echo esc_attr( $additional_classes ); ?>"<?php echo esc_attr( $feed_styles ); ?> data-feedid="<?php echo esc_attr( $feed_id ); ?>" data-res="<?php echo esc_attr( $image_resolution_setting ); ?>" data-cols="<?php echo esc_attr( $cols_setting ); ?>" data-num="<?php echo esc_attr( $num_setting ); ?>" data-shortcode-atts="<?php echo esc_attr( $shortcode_atts ); ?>" <?php echo esc_attr( $other_atts ); ?>>
<?php
if ( ! empty( $header_data ) && $settings['showheader'] && !$settings['headeroutside'] ) {
include sbi_get_feed_template_part( 'header', $settings );
}
?>
<?php $big_image = $settings['imageres']; ?>
<div id="sbi_images" <?php echo esc_attr( $sb_images_style ); ?> class="<?php if( $big_image === 'true' ) {echo 'art-big-image';} ?>">
<?php
$i = 0;
?>
<?php
if ( ! in_array( 'ajaxPostLoad', $flags, true ) ) {
$this->posts_loop( $posts, $settings );
}
?>
</div><!-- art-other-images -->
</div>
<?php include sbi_get_feed_template_part( 'footer', $settings ); ?>
<?php
/**
* Things to add before the closing "div" tag for the main feed element. Several
* features rely on this hook such as local images and some error messages
*
* @param object SB_Instagram_Feed
* @param string $feed_id
*
* @since 2.1/5.2
*/
do_action( 'sbi_before_feed_end', $this, $feed_id ); ?>
</div>
<?php do_action( 'sbi_after_feed', $posts, $settings );?>