-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfooter.php
39 lines (35 loc) · 1.47 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 theme footer.
*
* @package bootstrap-basic4
*/
?>
</div><!--.site-content-->
<footer id="site-footer" class="site-footer page-footer">
<div id="footer-row" class="row">
<div class="col-md-6 footer-left">
<?php
if (!dynamic_sidebar('footer-left')) {
/* translators: %s: WordPress text with link. */
printf(__('Powered by %s', 'bootstrap-basic4'), '<a href="https://wordpress.org" rel="nofollow">WordPress</a>');
echo ' | ';
if (function_exists('the_privacy_policy_link')) {
the_privacy_policy_link('', ' | ');
}
/* translators: %s: Bootstrap Basic 4 text with link. */
printf(__('Theme: %s', 'bootstrap-basic4'), '<a href="https://rundiz.com" rel="nofollow">Bootstrap Basic4</a>');
}
?>
</div>
<div class="col-md-6 footer-right text-right">
<?php dynamic_sidebar('footer-right'); ?>
</div>
</div>
</footer><!--.page-footer-->
</div><!--.page-container-->
<!--WordPress footer-->
<?php wp_footer(); ?>
<!--end WordPress footer-->
</body>
</html>