-
Notifications
You must be signed in to change notification settings - Fork 73
/
footer.php
26 lines (17 loc) · 893 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
<?php hybrid_get_sidebar( 'primary' ); // Loads the sidebar/primary.php template. ?>
</div><!-- #main -->
<?php hybrid_get_sidebar( 'subsidiary' ); // Loads the sidebar/subsidiary.php template. ?>
<?php hybrid_get_menu( 'subsidiary' ); // Loads the menu/subsidiary.php template. ?>
<footer <?php hybrid_attr( 'footer' ); ?>>
<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.
esc_html__( 'Copyright © %1$s %2$s. Powered by %3$s and %4$s.', 'hybrid-base' ),
date_i18n( 'Y' ), hybrid_get_site_link(), hybrid_get_wp_link(), hybrid_get_theme_link()
); ?>
</p><!-- .credit -->
</footer><!-- #footer -->
</div><!-- #container -->
<?php wp_footer(); // WordPress hook for loading JavaScript, toolbar, and other things in the footer. ?>
</body>
</html>