-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
48 lines (48 loc) · 2.07 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
<div class="footer-wrapper">
<div id="footer">
<?php if ( !dynamic_sidebar( __('Footer','language') ) ) : ?>
<?php endif; ?>
</div><!--end of footer div-->
</div><!--end of footer-wrapper div-->
<div class="bottom-bar-wrapper hide-for-small">
<div class="bottom-bar">
<p><?php _e('Website by ','language');?>
<a href="http://maverickmultimedia.com"><?php echo('Maverick Multimedia');?></a> - <?php _e('Powered by ','language');?>
<a href="http://wordpress.org"><?php _e('WordPress','language');?></a>
</p>
</div>
</div>
<footer id="footerMob" class="row show-for-small">
<div style="width:100%; height:48px;">
<div class="twelve columns">
<div class="footer_links"><?php _e('Website by','language');?>
<a href="http://maverickmultimedia.com" class="footer-gorilla-link"></a> - <?php _e('Powered by','language');?>
<a href="http://wordpress.org" class="footer-wp-link"></a>
</div>
</div>
</div>
<div class="eight columns">
<ul class="inline-list left" style="margin-top:12px;">
<li >
<!-- Get Contact page ID -->
<?php
$pages = get_pages(array(
'meta_key' => '_wp_page_template',
'meta_value' => 'contact-us.php',
'hierarchical' => 0
));
foreach($pages as $page){ ?>
<a href="<?php echo get_site_url().'/'.$page->post_name;?>"><?php _e('Contact Us','language');?></a>
<?php
break;
}
?>
</li>
</ul>
<ul class="inline-list right" style="margin-top:12px;">
<li><a class="to-top scrollup" href="#"><?php _e('Go To Top','language');?></a></li>
</ul>
</div>
</footer>
<?php wp_footer(); ?> </body>
</html>