-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
50 lines (46 loc) · 1.26 KB
/
footer.php
File metadata and controls
50 lines (46 loc) · 1.26 KB
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
42
43
44
45
46
47
48
49
50
<?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 Leopard
*/
?>
<footer id="lprd-footer" class="site-footer lprd-footer-section">
<?php if (is_active_sidebar('leopard-footer-widget')): ?>
<div class="lprd-footer-widget-area">
<div class="container">
<div class="row">
<?php dynamic_sidebar('leopard-footer-widget'); ?>
</div>
</div>
</div>
<?php endif; ?>
<div class="lprd-footer-copyright-area">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="site-info text-center">
<?php
$copyright_txt = get_theme_mod('lprd_copyright_txt');
if($copyright_txt):
echo wpautop(lprd_allowed_html($copyright_txt));
?>
<?php else: ?>
<?php
/* translators: 1: Theme name, 2: Theme author. */
printf( esc_html__( 'Theme: %1$s by %2$s', 'leopard' ), 'Leopard', '<a href="http://www.iqbalrony.com/">iqbalrony</a>' );
?>
<?php endif; ?>
</div><!-- .site-info -->
</div>
</div>
</div>
</div> <!-- lprd_footer_copyright_area END-->
</footer>
<?php wp_footer(); ?>
</body>
</html>