51 lines
1.6 KiB
PHP
51 lines
1.6 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 Style2 -->
|
||
|
<footer class="footer-style2">
|
||
|
<?php if ( is_active_sidebar( 'footer-sidebar2' ) ) { ?>
|
||
|
<!--Start Footer Main-->
|
||
|
<div class="footer-main-style2">
|
||
|
<div class="container">
|
||
|
<div class="footer-main-widget-style2">
|
||
|
<?php dynamic_sidebar( 'footer-sidebar2' ); ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!--End Footer Main-->
|
||
|
<?php } ?>
|
||
|
|
||
|
<!--Start Footer Bottom-->
|
||
|
<div class="footer-bottom-style2">
|
||
|
<div class="container">
|
||
|
<div class="bottom-inner">
|
||
|
<?php if($options->get('footer_copyright_text_v2')){ ?>
|
||
|
<div class="copyright-text">
|
||
|
<p><?php echo wp_kses($options->get('footer_copyright_text_v2'), true); ?></p>
|
||
|
</div>
|
||
|
<?php } ?>
|
||
|
|
||
|
<?php if($options->get('show_footer_privacy_menu_v2')){ ?>
|
||
|
<div class="footer-menu">
|
||
|
<ul>
|
||
|
<?php echo wp_kses($options->get('footer_privacy_menu_v2'), true); ?>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<?php } ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!--End Footer Bottom-->
|
||
|
</footer>
|
||
|
<!--End footer Style1-->
|
||
|
|