| Server IP : 104.26.5.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/highrangesfarmstay/public_html/wp-content/themes/hub/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 = '';
/**
* 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 ); ?>" 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
if ( ! empty( $header_data ) && $settings['showheader'] && !$settings['headeroutside'] ) {
include sbi_get_feed_template_part( 'header', $settings );
}
?>
<div id="sbi_images">
<?php
if ( ! in_array( 'ajaxPostLoad', $flags, true ) ) {
$this->posts_loop( $posts, $settings );
}
?>
</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 );?>