-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
22 lines (22 loc) · 903 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
<?php
/**
* Footer Template
*
* The footer template is generally used on every page of your site. Nearly all other
* templates call it somewhere near the bottom of the file. It is used mostly as a closing
* wrapper, which is opened with the header.php file. It also executes key functions needed
* by the theme, child themes, and plugins.
*
*/
?> </div> <!--#main-->
</div> <!--#innerwrap-->
</div> <!--#outerwrap-->
<footer id="footer">
<div class="container">
<?php get_template_part( 'sidebar-subsidiary' ); ?>
<p class="copyright credits">© <?php echo date ( 'Y' ); ?> | Maintained with love by <a href="http://littlewebgiants.com" target="_blank">Little Web Giants</a></p>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>