-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
48 lines (40 loc) · 1.19 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
42
43
44
45
46
47
48
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "site-content" div and all content after.
*
* @package WordPress
* @subpackage Findus
* @since Findus 1.0
*/
$footer = apply_filters( 'findus_get_footer_layout', 'default' );
?>
</div><!-- .site-content -->
<footer id="apus-footer" class="apus-footer" role="contentinfo">
<?php if ( !empty($footer) ): ?>
<?php findus_display_footer_builder($footer); ?>
<?php else: ?>
<div class="apus-copyright">
<div class="container">
<div class="copyright-content">
<div class="text-copyright text-center">
<?php
$allowed_html_array = array( 'a' => array('href' => array()) );
echo wp_kses(sprintf(__('© %s - Findus. All Rights Reserved. <br/> Powered by <a href="//apusthemes.com">ApusTheme</a>', 'findus'), date("Y")), $allowed_html_array);
?>
</div>
</div>
</div>
</div>
<?php endif; ?>
</footer><!-- .site-footer -->
<?php if ( findus_get_config('back_to_top') ) { ?>
<a href="#" id="back-to-top">
<i class="fas fa-long-arrow-alt-up"></i>
</a>
<?php } ?>
</div><!-- .site -->
<?php wp_footer(); ?>
</body>
</html>