forked from mamurjordev/learnegy-lms-wordpress-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
24 lines (22 loc) · 862 Bytes
/
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
<!-- footer-start -->
<footer class="footer">
<div class="row">
<div class="col-md-12">
<div class="footer-massage">
<?php
if(get_theme_mod('learnegy_footer_credit_settings')) {
echo esc_html( get_theme_mod('learnegy_footer_credit_settings'));
} else {
echo '@ learnegy | Developed by <a href="https://mamurjor.com/">Mamurjor IT</a> | 2022';
}
?>
</div>
</div>
</div>
</footer>
<!-- footer-close -->
<!-- back-to-top -->
<button onclick="topFunction()" id="myBtn" title="<?php _e('Go to top', 'learnegy'); ?>"><i class="fas fa-arrow-up"></i></button>
<?php wp_footer(); ?>
</body>
</html>