ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF  x x ?? C         ?? C   ?à   " ??     ?? μ  } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú??     ?? μ   w !1AQ aq"2?B‘?±á #3Rebr?{ gilour

File "footer.php"

Full Path: /home/zcziejy/ryadselyen/plugins/instagram-feed/templates/footer.php
File size: 2.31 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Instagram Feed Footer Template
 * Adds pagination and html for errors and resized images
 *
 * @version 6.0 Instagram Feed Pro 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'];
$follow_button_text = __( $settings['followtext'], 'instagram-feed' );

$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'], 'instagram-feed' );

$footer_attributes   = SB_Instagram_Display_Elements::get_footer_attributes( $settings );

?>
<div id="sbi_load" <?php echo $footer_attributes; ?>>

	<?php if ( $use_pagination || sbi_doing_customizer( $settings ) ) : ?>
		<a class="sbi_load_btn" href="javascript:void(0);"<?php echo $load_btn_style; ?><?php echo SB_Instagram_Display_Elements::get_button_data_attributes( $settings ); ?>>
			<span class="sbi_btn_text"<?php echo SB_Instagram_Display_Elements::get_button_attribute( $settings ); ?>><?php echo esc_html( $load_button_text ); ?></span>
			<span class="sbi_loader sbi_hidden" style="background-color: rgb(255, 255, 255);" aria-hidden="true"></span>
		</a>
	<?php endif; ?>

	<?php if ( ( $first_username && $show_follow_button ) || sbi_doing_customizer( $settings ) ) : ?>
		<span class="sbi_follow_btn<?php echo esc_attr( $follow_btn_classes ); ?>"<?php echo SB_Instagram_Display_Elements::get_follow_data_attributes( $settings ); ?>>
        <a<?php echo SB_Instagram_Display_Elements::get_header_link( $settings, $first_username ) ?><?php echo $follow_btn_style; ?> target="_blank" rel="nofollow noopener">
            <?php echo SB_Instagram_Display_Elements::get_icon( 'instagram', 'svg' ); ?>
            <span<?php echo SB_Instagram_Display_Elements::get_follow_attribute( $settings ); ?>><?php echo esc_html( $follow_button_text ); ?></span>
        </a>
    </span>
	<?php endif; ?>

</div>