-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
33 lines (31 loc) · 965 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
<?php
/**
* Footer template file
* --------------------
* @package gyaan
* @since 1.0.0
*/
?>
<div class="footer-wrapper">
<footer class="site-footer">
<?php
$wp_link = sprintf( '<a href="%2$s">%1$s</a>', esc_html__( 'WordPress', 'gyaan' ), esc_url( 'https://wordpress.org/' ) );
?>
<div class="theme-footer">
<span class="footer-text"><strong><?php esc_html_e( 'Gyaan', 'gyaan' ); ?></strong></span>
<span class="footer-text"><?php printf( esc_html__( 'Proudly powered by %s', 'gyaan' ), $wp_link ); ?></span>
<?php
if ( function_exists( 'the_privacy_policy_link' ) ) {
the_privacy_policy_link( '<span class="footer-text">', '</span>' );
}
?>
</div>
</footer>
</div><!-- .footer-wrapper -->
</div><!-- .main-wrapper -->
<div class="back-to-top">
<a href="#top" title="Go to top"><span class="oi oi-arrow-top"></span></a>
</div><!--. back-to-top -->
<?php wp_footer(); ?>
</body>
</html>