-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·39 lines (37 loc) · 1.17 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package UWC_Website
*/
?></div>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="footer-widgets">
<?php if ( is_active_sidebar( 'footer-left' ) ) : ?>
<div class="footer-widget footer-left">
<?php dynamic_sidebar( 'footer-left' ); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'footer-center' ) ) : ?>
<div class="footer-widget footer-center">
<?php dynamic_sidebar( 'footer-center' ); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'footer-right' ) ) : ?>
<div class="footer-widget footer-right">
<?php dynamic_sidebar( 'footer-right' ); ?>
</div>
<?php endif; ?>
</div>
<div class="footer-info">
<p>© <?php bloginfo( 'name' ); ?>. <?php echo esc_html__( 'All rights reserved.', 'uwc-website' ); ?> <a href="https://madebyconnor.co/" rel="designer" target="_blank">Made by Connor.</a></p>
</div>
</footer>
</div>
<?php wp_footer(); ?>
</body>
</html>