-
Notifications
You must be signed in to change notification settings - Fork 34
/
footer.php
executable file
·31 lines (24 loc) · 941 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
<?php
/**
* The template for displaying the footer.
*
* @package WordPress
* @subpackage OptionTree Theme
*/
?>
</div><!-- #page -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<p class="site-copy"><?php printf( __( '%s. All Rights Reserved.', 'option-tree-theme' ), '© ' . date( 'Y' ) . ' <a href="' . esc_url( 'http://valendesigns.com/' ) . '">Derek Herman</a>' ); ?></p>
<p><?php printf( __( 'Proudly powered by %s', 'option-tree-theme' ), '<a href="' . esc_url( 'http://wordpress.org/' ) . '">WordPress</a>' ); ?></p>
</div><!-- .site-info -->
</footer><!-- #colophon -->
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
</body>
</html>