-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
35 lines (28 loc) · 972 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
25
26
27
28
29
30
31
32
33
34
35
<?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 Mahal
*/
?>
<?php get_sidebar('footer'); ?>
</div><!-- #content -->
<footer id="colophon" class="site-footer">
<div class="site-info">
<a href="<?php echo esc_url(__('https://wordpress.org/', 'mahal')); ?>">WordPress</a>
<span class="sep"> | </span>
<?php
/* translators: 1: Theme name, 2: Theme author. */
printf(esc_html__('%1$s designed by %2$s.', 'mahal'), 'Mahal Themes', '<a href="https://www.dhimaskirana.com/">Dhimas Kirana</a>');
?>
</div><!-- .site-info -->
<div class="backtotop" onclick="window.scrollTo({ top: 0, behavior: 'smooth' });return false;"><span id="top" class="dashicons dashicons-arrow-up-alt2"></span></div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>