65 lines
2.3 KiB
PHP
65 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Footer Template File
|
|
*
|
|
* @package THINKAI
|
|
* @author Template Path
|
|
* @version 1.0
|
|
*/
|
|
|
|
$options = thinkai_WSH()->option();
|
|
$allowed_html = wp_kses_allowed_html( 'post' );
|
|
?>
|
|
|
|
<!--Start footer Style3 -->
|
|
<footer class="footer-style3">
|
|
<?php if ( is_active_sidebar( 'footer-sidebar3' ) ) { ?>
|
|
<!--Start Footer Main-->
|
|
<div class="footer-main-style3">
|
|
<div class="container">
|
|
<div class="footer-main-widget-style3">
|
|
<?php dynamic_sidebar( 'footer-sidebar3' ); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--End Footer Main-->
|
|
<?php } ?>
|
|
|
|
<!--Start Footer Bottom-->
|
|
<div class="footer-bottom-style3">
|
|
<div class="container">
|
|
<div class="bottom-inner">
|
|
<div class="copyright-text-style3">
|
|
<?php if($options->get('show_footer_privacy_menu_v3')){ ?>
|
|
<ul>
|
|
<?php echo wp_kses($options->get('footer_privacy_menu_v3'), true); ?>
|
|
</ul>
|
|
<?php } ?>
|
|
|
|
<?php if($options->get('footer_copyright_text_v3')){ ?>
|
|
<p><?php echo wp_kses($options->get('footer_copyright_text_v3'), true); ?></p>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
<?php if( $options->get( 'show_footer_social_icon_v3' )){ ?>
|
|
<div class="footer-social-link-style3">
|
|
<ul class="clearfix">
|
|
<?php echo (thinkai_get_social_icon()); ?>
|
|
</ul>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php if( $options->get( 'show_footer_email_info_v3' )){ ?>
|
|
<div class="footer-bottom-style3__right">
|
|
<p><?php echo wp_kses($options->get('footer_email_title_v3'), true); ?></p>
|
|
<p><a href="mailto:<?php echo esc_attr($options->get('footer_email_address_v3')); ?>"><?php echo wp_kses($options->get('footer_email_address_v3'), true); ?></a></p>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--End Footer Bottom-->
|
|
|
|
</footer>
|
|
<!--End footer Style3-->
|
|
|