-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
executable file
·55 lines (43 loc) · 1.29 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
<footer>
<div class="container">
<div class="logo">
<a href="<?php bloginfo('url'); ?>"><img alt="OCPSoft logo" src="<?php bloginfo('stylesheet_directory');?>/img/desktop_logo_white.png" /> </a>
</div>
<?php
wp_nav_menu(array(
'theme_location' => 'footer',
'container' => '',
'items_wrap' => '%3$s',
'fallback_cb' => 'ocpsoft_menu_fallback',
'walker' => new OCPsoft_Footer_Menu()
));
?>
</div>
<?php
if (is_active_sidebar('sidebar-header'))
dynamic_sidebar('sidebar-footer');
?>
<p class="copyright">
<span class="pull-left" style="margin-left: 25px;">
<span class="g-plusone" data-annotation="none"></span>
</span>
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
©
<?=date('Y');?>
<a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?> </a> All Rights Reserved.
</p>
<?php wp_footer(); ?>
<?php
if ( function_exists( 'yoast_analytics' ) )
{
yoast_analytics();
}
?>
<a class="visible-desktop" href="#" id="toTop">Top</a>
</footer>