-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
41 lines (38 loc) · 1.83 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
40
41
<footer class="bg-dark pt-5 pb-3">
<div class="container">
<?php if (is_active_sidebar('footer-widget-area-1') || is_active_sidebar('footer-widget-area-2') || is_active_sidebar('footer-widget-area-3')) : ?>
<div class="row">
<?php if (is_active_sidebar('footer-widget-area-1')) : ?>
<div class="col-md-4">
<div class="footer-widgets text-white">
<?php dynamic_sidebar('footer-widget-area-1'); ?>
</div>
</div>
<?php endif; ?>
<?php if (is_active_sidebar('footer-widget-area-2')) : ?>
<div class="col-md-4 text-white">
<div class="footer-widgets">
<?php dynamic_sidebar('footer-widget-area-2'); ?>
</div>
</div>
<?php endif; ?>
<?php if (is_active_sidebar('footer-widget-area-3')) : ?>
<div class="col-md-4 text-white">
<div class="footer-widgets">
<?php dynamic_sidebar('footer-widget-area-3'); ?>
</div>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="row mt-4">
<div class="col-md-12 text-white text-center">
<p>© <?php echo date('Y'); ?> <?php bloginfo('name'); ?>. All rights reserved. Powered by: <a href="https://github.com/Finland93/SpeedPress" title="Bootstrap 5 wordpress theme">SpeedPress</a></p>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
<script>document.addEventListener('contextmenu', event => event.preventDefault());</script>
</body>
</html>