-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·26 lines (21 loc) · 871 Bytes
/
footer.php
File metadata and controls
executable file
·26 lines (21 loc) · 871 Bytes
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the <div class="row">, <div id="wrapper" class="container"> and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package odin
*/
?>
</div><!-- .row -->
</div><!-- #wrapper.container -->
<footer id="footer" role="contentinfo">
<div class="container">
<p>© <?php echo date( 'Y' ); ?> <a href="<?php echo esc_url( home_url() ); ?>"><?php bloginfo( 'name' ); ?></a> - <?php _e( 'All rights reserved', 'odin' ); ?> | <?php echo sprintf( __( 'Powered by the <a href="%s" rel="nofollow" target="_blank">Odin</a> forces and <a href="%s" rel="nofollow" target="_blank">WordPress</a>.', 'odin' ), 'http://wpod.in/', 'http://wordpress.org/' ); ?></p>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>