forked from SimonPadbury/b4st
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfooter.php
26 lines (19 loc) · 832 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
<footer class="site-footer mt-5">
<div class="container">
<?php if ( is_active_sidebar( 'footer-widget-area' ) ): ?>
<div class="row border-bottom pt-5 pb-4" id="footer" role="navigation">
<?php dynamic_sidebar( 'footer-widget-area' ); ?>
</div>
<?php endif; ?>
<div class="row pt-3">
<div class="col">
<p class="text-center">© <?php echo date( 'Y' ); ?> <a
href="<?php echo home_url( '/' ); ?>"><?php bloginfo( 'name' ); ?></a></p>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
<?php echo isset( B4stHelpers::$options['analytics_foot'] ) ? B4stHelpers::$options['analytics_foot'] : '' ?>
</body><!-- /body from header.php -->
</html><!-- /html from header.php -->