-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
24 lines (20 loc) · 769 Bytes
/
footer.php
File metadata and controls
24 lines (20 loc) · 769 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
<div>
<footer class="section footer">
<div class="container">
<div class="row">
<div class="col-xs-3">
</div>
<div class="col-xs-9">
<?php if ($text = pllGetOption('footer_text')) { ?>
<div class="footer__right"><?php echo $text; ?></div>
<?php } ?>
</div>
</div>
</div>
</footer>
</div>
</div>
<?php wp_footer(); ?>
<?php echo get_option('scripts'); ?>
</body>
</html>