-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·35 lines (30 loc) · 1.11 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package tdpersona
*/
?>
</div><!-- #main .site-main -->
<div class="footer-container">
<footer id="colophon" class="site-footer container" role="contentinfo">
<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
<div class="row">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div><!-- .row -->
<?php endif; ?>
<div class="site-info">
<div class="site-info-inner">
© <?php echo date('Y'); ?> <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
<span class="sep">—</span>
<?php printf( esc_html__( '%1$s by %2$s', 'tdpersona' ), 'tdPersona', '<a href="https://themesharbor.com/" rel="designer">Themes Harbor</a>' ); ?>
</div><!-- .site-info-inner -->
</div><!-- .site-info -->
</footer><!-- #colophon .site-footer -->
</div><!-- .site-footer -->
</div><!-- #page .hfeed .site -->
<?php wp_footer(); ?>
</body>
</html>