-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
executable file
·37 lines (33 loc) · 1.25 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
36
37
<?php
/**
* The template used to display the footer
*
* Calls sidebar-footer.php for bottom widgets
*
* @since 0.0.1
*/
essence_show_template_file( __FILE__ );
?>
</div>
<?php
/**
* A sidebar in the footer? Yep. You can can customize
* your footer with four columns of widgets.
*/
get_sidebar( 'footer' );
?>
<div class="row footer" role="contentinfo">
<div id="site-info" class="clearfix columns eight">
<a href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
<?php bloginfo( 'name' ); ?>
</a>
</div><!-- #site-info -->
<div id="site-generator" class="columns four">
<?php do_action( 'essence_credits' ); ?>
<a href="<?php echo esc_url( apply_filters( 'essence-footer-link-url', 'http://essencetheme.com' ) ); ?>" title="<?php esc_attr_e( apply_filters( 'essence-footer-link-title', __( 'Essence Theme Framework', 'essence' ) ) ); ?>" rel="generator"><?php esc_html_e( apply_filters( 'essence-footer-link-text', __( 'Proudly powered by Essence Theme Framework.', 'essence' ) ) ); ?></a>
</div><!-- #site-generator -->
</div><!-- .row.footer -->
</div><!-- #wrapper -->
<?php wp_footer(); ?>
</body>
</html>