forked from moobaer/tiga
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
51 lines (40 loc) · 1.44 KB
/
footer.php
File metadata and controls
51 lines (40 loc) · 1.44 KB
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
44
45
46
47
48
49
50
51
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the id=main div, footer widgets
* and all content after
*
* @package Tiga
* @author Satrya
* @license license.txt
* @since 0.0.1
*/
?>
</div><!-- #main -->
</div> <!-- end #page .hfeed .site -->
<?php if ( is_active_sidebar( 'subsidiary' ) && !is_page_template( 'page-templates/home.php' ) ) : ?>
<footer id="colophon" class="site-footer <?php tiga_dynamic_sidebar_class( 'subsidiary' ); ?>" role="contentinfo">
<div class="footer">
<?php dynamic_sidebar( 'subsidiary' ); ?>
</div> <!-- end .footer -->
</footer> <!-- end #colophon .site-footer -->
<?php endif; ?>
<div id="site-credit" class="site-info">
<?php tiga_credits(); ?>
<span class="copyleft">© Copyright <?php echo date('Y'); ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a>
</span>
<?php if( of_get_option( 'tiga_credits' ) == false ) { ?>
<span class="credit">
<?php printf( __('Powered by <a href="http://wordpress.org/" title="%1$s" rel="generator">%2$s</a> · Theme by <a href="http://satrya.me/" title="%3$s" rel="designer">%4$s</a>', 'tiga'),
esc_attr( 'A Semantic Personal Publishing Platform'),
'WordPress',
esc_attr( 'Satrya'),
'Satrya'
); ?>
</span>
<?php } ?>
</div> <!-- #site-credit .site-info -->
<?php wp_footer(); ?>
</body>
</html>