storefront/footer.php

41 lines
737 B
PHP
Raw Normal View History

2014-08-17 16:55:38 +01:00
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package storefront
*/
2016-02-19 16:57:56 +00:00
2014-08-17 16:55:38 +01:00
?>
</div><!-- .col-full -->
</div><!-- #content -->
<?php do_action( 'storefront_before_footer' ); ?>
2015-03-24 09:21:12 +00:00
<footer id="colophon" class="site-footer" role="contentinfo">
2014-08-29 15:43:48 +01:00
<div class="col-full">
2014-08-17 16:55:38 +01:00
<?php
/**
2016-02-19 16:57:56 +00:00
* Functions hooked in to storefront_footer action
*
2014-08-17 16:55:38 +01:00
* @hooked storefront_footer_widgets - 10
2016-02-19 16:57:56 +00:00
* @hooked storefront_credit - 20
2014-08-17 16:55:38 +01:00
*/
2018-06-22 15:11:39 +01:00
do_action( 'storefront_footer' );
?>
2014-08-17 16:55:38 +01:00
</div><!-- .col-full -->
</footer><!-- #colophon -->
2014-11-26 09:59:04 +00:00
2014-11-26 08:50:02 +01:00
<?php do_action( 'storefront_after_footer' ); ?>
2014-11-26 09:59:04 +00:00
2014-08-17 16:55:38 +01:00
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
2016-02-19 16:57:56 +00:00
</html>