-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·26 lines (20 loc) · 934 Bytes
/
footer.php
File metadata and controls
executable file
·26 lines (20 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php get_template_part( 'footer/newsletter' ); ?>
<?php $footer_bg_style = ot_get_option( 'footer_bg_style', '' ); ?>
<?php $footer_widget_display = ot_get_option( 'footer_widget_area', 'on' ); ?>
<!-- FOOTER-1
============================================= -->
<footer id="footer-1" class="footer division footer-widget-<?php echo esc_attr($footer_widget_display) ?> <?php echo esc_attr($footer_bg_style) ?>">
<div class="container">
<?php if( $footer_widget_display == 'on' ): ?>
<div class="row">
<?php get_template_part( 'footer/widget-area' ); ?>
</div> <!-- END FOOTER CONTENT -->
<?php endif; ?>
<?php get_template_part( 'footer/copyright' ); ?>
</div> <!-- End container -->
</footer> <!-- END FOOTER-1 -->
<?php get_template_part( 'footer/quick-form' ); ?>
</div> <!-- END PAGE CONTENT -->
<?php wp_footer(); ?>
</body>
</html>