-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
footer.php
28 lines (22 loc) · 997 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
23
24
25
26
27
28
<?php
/*-----------------------------------------------------------------------------------*/
/* This template will be called by all other template files to finish
/* rendering the page and display the footer area/content
/*-----------------------------------------------------------------------------------*/
?>
</main><!-- / end page container, begun in the header -->
<footer class="site-footer">
<div class="site-info container">
<p>Birthed <a href="http://bckmn.com/naked-wordpress" rel="theme">Naked</a>
on <a href="http://wordpress.org" rel="generator">Wordpress</a>
by <a href="http://bckmn.com" rel="designer">Joshua Beckman</a>
</p>
</div><!-- .site-info -->
</footer><!-- #colophon .site-footer -->
<?php wp_footer();
// This fxn allows plugins to insert themselves/scripts/css/files (right here) into the footer of your website.
// Removing this fxn call will disable all kinds of plugins.
// Move it if you like, but keep it around.
?>
</body>
</html>