-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
82 lines (66 loc) · 2.32 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
// Exit if accessed directly
if ( !defined( 'ABSPATH' ) ) {
exit;
}
/**
* Footer Template
*
*
* @file footer.php
* @package Responsive
* @author Emil Uzelac
* @copyright 2003 - 2014 CyberChimps
* @license license.txt
* @version Release: 1.2
* @filesource wp-content/themes/responsive/footer.php
* @link http://codex.wordpress.org/Theme_Development#Footer_.28footer.php.29
* @since available since Release 1.0
*/
/*
* Globalize Theme options
*/
global $responsive_options;
$responsive_options = responsive_get_options();
?>
<?php responsive_wrapper_bottom(); // after wrapper content hook ?>
</div><!-- end of #wrapper -->
<?php responsive_wrapper_end(); // after wrapper hook ?>
</div><!-- end of #container -->
<?php responsive_container_end(); // after container hook ?>
<div id="footer" class="clearfix">
<?php responsive_footer_top(); ?>
<div id="footer-wrapper">
<?php get_sidebar( 'footer' ); ?>
<div class="grid col-940">
<div class="grid col-540">
<?php if ( has_nav_menu( 'footer-menu', 'responsive' ) ) {
wp_nav_menu( array(
'container' => '',
'fallback_cb' => false,
'menu_class' => 'footer-menu',
'theme_location' => 'footer-menu'
) );
} ?>
</div><!-- end of col-540 -->
<div class="grid col-380 fit">
<?php echo responsive_get_social_icons() ?>
</div><!-- end of col-380 fit -->
</div><!-- end of col-940 -->
<?php get_sidebar( 'colophon' ); ?>
<div class="grid col-300 copyright">
<?php esc_attr_e( '©', 'responsive' ); ?> <?php echo date( 'Y' ); ?><a id="copyright_link" href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
<?php bloginfo( 'name' ); ?>
</a>
</div><!-- end of .copyright -->
<div class="grid col-300 scroll-top"><a href="#scroll-top" title="<?php esc_attr_e( 'scroll to top', 'responsive' ); ?>"><?php _e( '↑', 'responsive' ); ?></a></div>
<div class="grid col-300 fit powered">
<a href="<?php echo get_permalink(10388); ?>"><?php echo get_the_title(10388); ?></a>
</div><!-- end .powered -->
</div><!-- end #footer-wrapper -->
<?php responsive_footer_bottom(); ?>
</div><!-- end #footer -->
<?php responsive_footer_after(); ?>
<?php wp_footer(); ?>
</body>
</html>