forked from digisavvy/some-like-it-neat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
35 lines (32 loc) · 1.24 KB
/
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
*
* @package some_like_it_neat
*/
?>
<?php tha_content_bottom(); ?>
</main><!-- #main -->
<?php tha_content_after(); ?>
<?php tha_footer_before(); ?>
<footer id="colophon" class="site-footer wrap" role="contentinfo" itemscope="itemscope" itemtype="http://schema.org/WPFooter">
<?php tha_footer_top(); ?>
<div class="site-info">
<?php do_action( 'some_like_it_neat_credits' ); ?>
<?php if ( 'no' === get_theme_mod( 'some-like-it-neat_hide_WordPress_credits' ) ) : ?>
<a class="wordpress" href="http://wordpress.org/" rel="generator"><?php printf( __( 'Proudly powered by %s WordPress', 'some-like-it-neat' ), '<span class="genericon genericon-wordpress"></span>' ); ?></a>
<span class="sep"> | </span>
<?php endif; ?>
<?php echo esc_attr( get_theme_mod( 'some_like_it_neat_footer_colophon', __( 'Some Like it Neat, by Alex Vasquez', 'some-like-it-neat' ) ) ); ?><br />
</div><!-- .site-info -->
<?php tha_footer_bottom(); ?>
</footer><!-- #colophon -->
<?php tha_footer_after(); ?>
</div><!-- .wrap -->
</div><!-- #page -->
<?php tha_body_bottom(); ?>
<?php wp_footer(); ?>
</body>
</html>