-
Notifications
You must be signed in to change notification settings - Fork 3
/
footer.php
30 lines (19 loc) · 880 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
29
30
<?php hybrid_get_sidebar( 'primary' ); // Loads the sidebar/primary.php template. ?>
</div><!-- #main -->
<?php hybrid_get_sidebar( 'subsidiary' ); // Loads the sidebar/subsidiary.php template. ?>
</div><!-- .wrap -->
<footer <?php hybrid_attr( 'footer' ); ?>>
<div class="wrap">
<p class="credit">
<?php printf(
/* Translators: 1 is current year, 2 is site name/link, 3 is WordPress name/link, and 4 is theme name/link. */
__( 'Copyright © %1$s %2$s. Powered by %3$s and %4$s.', 'ex-astris' ),
date_i18n( 'Y' ), hybrid_get_site_link(), hybrid_get_wp_link(), hybrid_get_theme_link()
); ?>
</p><!-- .credit -->
</div><!-- .wrap -->
</footer><!-- #footer -->
</div><!-- #container -->
<?php wp_footer(); // WordPress hook for loading JavaScript, toolbar, and other things in the footer. ?>
</body>
</html>