forked from themeegg/eggnews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
43 lines (39 loc) · 1.44 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
38
39
40
41
42
43
<?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 Theme Egg
* @subpackage Eggnews
* @since 1.0.0
*/
?>
</div><!--.teg-container-->
</div><!-- #content -->
<footer id="colophon" class="site-footer">
<?php get_sidebar( 'footer' ); ?>
<div id="bottom-footer" class="sub-footer-wrapper clearfix">
<div class="teg-container">
<div class="site-info">
<span class="copy-info"><?php echo esc_html( get_theme_mod( 'eggnews_copyright_text', esc_html__( '2017 eggnews', 'eggnews' ) ) ); ?></span>
<span class="sep"> | </span>
<?php
$eggnews_theme_author = esc_url( 'http://themeegg.com/' );
/* translators: %s: theme author */
printf( esc_html__( 'Eggnews by %1$s.', 'eggnews' ), '<a href="'.$eggnews_theme_author.'" >Theme Egg</a>' );
?>
</div><!-- .site-info -->
<nav id="footer-navigation" class="sub-footer-navigation" >
<?php wp_nav_menu( array( 'theme_location' => 'footer', 'container_class' => 'footer-menu', 'fallback_cb' => false, 'items_wrap' => '<ul>%3$s</ul>' ) ); ?>
</nav>
</div>
</div><!-- .sub-footer-wrapper -->
</footer><!-- #colophon -->
<div id="teg-scrollup" class="animated arrow-hide"><i class="fa fa-chevron-up"></i></div>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>