-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·38 lines (30 loc) · 895 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
36
37
38
<?php
/**
* The template for displaying the footer.
*
* @package WordPress
* @subpackage Starkers
* @since Starkers HTML5 3.0
*/
?>
<footer>
<?php
get_sidebar( 'footer' );
?>
<a href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
<?php bloginfo( 'name' ); ?>
</a>
<?php do_action( 'starkers_credits' ); ?>
<a href="<?php echo esc_url( __('http://wordpress.org/', 'starkers') ); ?>" title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'starkers'); ?>" rel="generator">
<?php printf( __('Proudly powered by %s.', 'starkers'), 'WordPress' ); ?>
</a>
</footer>
<?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>