-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
37 lines (32 loc) · 1.08 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 for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Jojo2016
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-categories">
<h3 class="section-slug">Browse by category</h3>
<div class="category-list">
<?php jojo2016_the_category_items(); ?>
</div>
</div>
<div class="site-footer-meta">
<div class="site-info">
<?php printf( esc_html__( '© %d Jojotastic,', 'jojo2016' ), date( 'Y' ) ); ?>
<a href="/policy">Terms & Disclosures</a>
<span class="sep"> | </span>
<?php printf( esc_html__( 'Theme design by: %1$s. Site development by: %2$s.', 'jojo2016' ), '<a href="http://ashsmash.com/" rel="designer">Ash Huang</a>', '<a href="http://joemcgill.net/" rel="developer">Joe McGill</a>' ); ?>
</div><!-- .site-info -->
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>