-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
32 lines (25 loc) · 779 Bytes
/
footer.php
File metadata and controls
32 lines (25 loc) · 779 Bytes
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id #maincontentcontainer div and all content after.
* There are also four footer widgets displayed. These will be displayed from
* one to four columns, depending on how many widgets are active.
*
* @package Sitepoint Base
* @since Sitepoint Base 1.0
*/
?>
<?php do_action( 'sitepointbase_after_woocommerce' ); ?>
<div id="footercontainer">
<?php get_sidebar( 'footer' ); ?>
<div class="grid-container smallprint">
<div class="grid-100">
<?php echo sitepointbase_get_credits() ?>
</div> <!-- /.grid-100 -->
</div> <!-- /.grid-container.smallprint -->
</div> <!-- /.footercontainer -->
</div> <!-- /.#wrapper.hfeed.site -->
<?php wp_footer(); ?>
</body>
</html>