\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /var/www/html/tecnic24.com/wordpress/wp-content/themes/stike/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/tecnic24.com/wordpress/wp-content/themes/stike/footer.php |
<?php
/**
* The template for displaying the footer
* @package Stike
*/
/**
* Footer optional data
*/
global $stike_opt;
if( isset( $stike_opt['footer_logo']['url'] )):
$footer_logo = $stike_opt['footer_logo']['url'];
$footer_dsc = $stike_opt['footer_dsc'];
$copyright_text = $stike_opt['copyright_text'];
$enable_back_to_top = $stike_opt['enable_back_to_top'];
$contact_info = $stike_opt['contact_info'];
$contact_info_content = $stike_opt['contact_info_content'];
$enable_footer_divider = $stike_opt['enable_footer_divider'];
else:
$footer_logo = '';
$footer_dsc = '';
$copyright_text = '';
$enable_back_to_top = false;
$contact_info = '';
$contact_info_content = '';
$enable_footer_divider = false;
endif;
if( isset( $stike_opt['enable_lazyloader'] ) ):
$is_lazyloader = $stike_opt['enable_lazyloader'];
else:
$is_lazyloader = true;
endif;
if( $is_lazyloader == true ):
$lazy_class = 'smartify';
$lazy_attr = 'sm-';
else:
$lazy_class = '';
$lazy_attr = '';
endif;
?>
<!-- Start Footer Area -->
<footer class="footer-area">
<?php if( $enable_footer_divider == true ): ?>
<div class="divider"></div>
<?php endif; ?>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="single-footer-widget">
<div class="logo">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
<?php if( $footer_logo != '' ): ?>
<img class="<?php echo esc_attr($lazy_class); ?>" <?php echo esc_attr($lazy_attr); ?>src="<?php echo esc_url( $footer_logo ); ?>" alt="<?php bloginfo( 'name' ); ?>">
<?php else: ?>
<h2><?php bloginfo( 'name' ) ?></h2>
<?php endif; ?>
</a>
</div>
<p><?php echo esc_html( $footer_dsc ); ?></p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-footer-widget">
<?php
if ( is_active_sidebar( 'footer-1' ) ) {
dynamic_sidebar('footer-1');
}
?>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-footer-widget">
<?php
if ( is_active_sidebar( 'footer-2' ) ) {
dynamic_sidebar('footer-2');
}
?>
</div>
</div>
<div class="col-lg-3 col-md-6">
<?php if( $contact_info != '' && $contact_info_content != '' ): ?>
<div class="single-footer-widget">
<h3><?php echo esc_html( $contact_info ); ?></h3>
<?php echo wp_kses_post( $contact_info_content ); ?>
<?php stike_social_link(); ?>
</div>
<?php endif; ?>
</div>
</div>
<?php if( $copyright_text != '' ): ?>
<div class="copyright-area">
<p><?php echo wp_kses_post( $copyright_text ); ?></p>
</div>
<?php endif; ?>
</div>
</footer>
<!-- End Footer Area -->
<?php if( $enable_back_to_top == true ):?>
<div class="go-top"><i class='bx bx-chevron-up'></i></div>
<?php endif; ?>
<!-- <?php
global $wp;
$current_url = home_url(add_query_arg(array(), $wp->request));
?>
<?php if( stike_rtl() == true ): ?>
<a class="demo-rtl" href="<?php echo esc_url( $current_url ); ?>">LTR</a>
<?php else: ?>
<a class="demo-rtl" href="<?php echo esc_url( $current_url ); ?>/?rtl=enable">RTL</a>
<?php endif; ?> -->
<?php wp_footer(); ?>
</body>
</html>