| Server IP : 172.67.71.254 / 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/aurointeriors/public_html/wp-content/themes/archub/sbi/ |
Upload File : |
<?php
/**
* Smash Balloon Instagram Feed Footer Template
* Adds pagination and html for errors and resized images
*
* @version 2.2 Instagram Feed by Smash Balloon
*
*/
// Don't load directly
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
$follow_btn_style = SB_Instagram_Display_Elements::get_follow_styles( $settings ); // style="background: rgb();color: rgb();" already escaped
$follow_btn_classes = strpos( $follow_btn_style, 'background' ) !== false ? ' sbi_custom' : '';
$show_follow_button = ( $settings['showfollow'] == 'on' || $settings['showfollow'] == 'true' || $settings['showfollow'] == true ) && $settings['showfollow'] !== 'false';
$follow_button_text = __( $settings['followtext'], 'archub' );
$load_btn_style = SB_Instagram_Display_Elements::get_load_button_styles( $settings ); // style="background: rgb();color: rgb();" already escaped
$load_btn_classes = strpos( $load_btn_style, 'background' ) !== false ? ' sbi_custom' : '';
$load_button_text = __( $settings['buttontext'], 'archub' );
?>
<div id="sbi_load">
<?php if ( $use_pagination ) : ?>
<a class="sbi_load_btn" href="javascript:void(0);">
<span class="sbi_btn_text"><?php echo esc_html( $load_button_text ); ?></span>
<span class="sbi_loader sbi_hidden" style="background-color: rgb(255, 255, 255);"></span>
</a>
<?php endif; ?>
<?php if ( $first_username && $show_follow_button ) : ?>
<span class="sbi_follow_btn<?php echo esc_attr( $follow_btn_classes ); ?>">
<a href="<?php echo esc_url( 'https://www.instagram.com/' . $first_username . '/' ); ?>" target="_blank" rel="noopener nofollow"><?php echo SB_Instagram_Display_Elements::get_icon( 'instagram', $icon_type );echo esc_html( $follow_button_text ); ?></a>
</span>
<?php endif; ?>
</div>