This repository was archived by the owner on Jul 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·52 lines (51 loc) · 1.98 KB
/
Copy pathfooter.php
File metadata and controls
executable file
·52 lines (51 loc) · 1.98 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
52
<div id="footer">
<?=wp_nav_menu(array(
'theme_location' => 'footer-menu',
'container' => 'false',
'menu_class' => 'menu horizontal',
'menu_id' => 'footer-menu',
'fallback_cb' => false,
'depth' => 1,
'walker' => new Bootstrap_Walker_Nav_Menu()
));
?>
<div class="row" id="footer-widget-wrap">
<div class="footer-widget-1 span3">
<?php if(!function_exists('dynamic_sidebar') or !dynamic_sidebar('Footer - Column One')):?>
<a class="ignore-external" href="http://www.ucf.edu"><img src="<?=THEME_IMG_URL?>/logo.png" alt="" title="" /></a>
<?php endif;?>
</div>
<div class="footer-widget-2 span3">
<?php if(!function_exists('dynamic_sidebar') or !dynamic_sidebar('Footer - Column Two')):?>
<?php endif;?>
</div>
<div class="footer-widget-3 span3">
<?php if(!function_exists('dynamic_sidebar') or !dynamic_sidebar('Footer - Column Three')):?>
<?php endif;?>
</div>
<div class="footer-widget-4 span3">
<?php if(!function_exists('dynamic_sidebar') or !dynamic_sidebar('Footer - Column Four')):?>
<?php $options = get_option(THEME_OPTIONS_NAME);?>
<?php if($options['site_contact'] or $options['organization_name']):?>
<div class="maintained">
Site maintained by the <br />
<?php if($options['site_contact'] and $options['organization_name']):?>
<a href="mailto:<?=$options['site_contact']?>"><?=$options['organization_name']?></a>
<?php elseif($options['site_contact']):?>
<a href="mailto:<?=$options['site_contact']?>"><?=$options['site_contact']?></a>
<?php elseif($options['organization_name']):?>
<?=$options['organization_name']?>
<?php endif;?>
</div>
<?php endif;?>
<div class="copyright">© University of Central Florida</div>
<?php endif;?>
</div>
</div>
</div>
</div>
</body>
<?="\n".footer_()."\n"?>
</html>