-
Notifications
You must be signed in to change notification settings - Fork 2
/
footer.php
27 lines (26 loc) · 848 Bytes
/
footer.php
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
27
<footer id="footer" role="contentinfo">
<?php
$prefix = fashionable_store_get_prefix();
$footer_style = esc_attr( get_theme_mod( $prefix . '_footer_layout', '1' ) );
?>
<!-- Footer Area -->
<div id="footer" class="footer-area pad-tb-60">
<div class="container<?php echo ($footer_style == '1' ? ' grid-xl': ''); ?>">
<?php
get_template_part( 'template-parts/footer/footer-style-1');
?>
</div>
</div>
<!-- Copyright -->
<div id="copyright" class="copyright-area pad-tb-10">
<div class="container grid-xl">
<?php
$copyright_style = esc_attr( get_theme_mod( $prefix . '_copyright_layout', '1' ) );
get_template_part( 'template-parts/copyright/copyright-style-' . $copyright_style );
?>
</div><!-- .container -->
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>