This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Issue #15 - Removed Contact Us link from footer
- Loading branch information
briandunnigan
authored and
briandunnigan
committed
Nov 14, 2014
1 parent
dc0ef79
commit fb45689
Showing
2 changed files
with
2,579 additions
and
2,579 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,66 @@ | ||
</div><!--#uc-main--> | ||
|
||
<div id="uc-footer"> | ||
<?php get_template_part('mega-footer'); ?> | ||
<div class="container"> | ||
<ul id="uc-footer-links" class="clearfix"> | ||
<?php | ||
$options = get_option('uconn_banner_options'); | ||
$text_string = $options['text_string']; | ||
$location = $text_string; | ||
if($location == 'uchc'){ | ||
?> | ||
<li> | ||
<a href="http://www.uchc.edu/siteindex/index.html">A-Z Index</a> | ||
</li> | ||
<li> | ||
<a href="http://www.uchc.edu/" >UConn Health</a> | ||
</li> | ||
<li> | ||
<a href="http://www.uchc.edu/disclaimer/index.html">Disclaimer, Privacy Notice & Copyright</a> | ||
</li> | ||
<li> | ||
<a href="http://www.uchc.edu/directions/index.html" >Maps & Directions</a> | ||
</li> | ||
<li> | ||
<a href="http://www.uchc.edu/contact/index.html">Contact Us</a> | ||
</li> | ||
<li> | ||
© University of Connecticut Health Center | ||
</li> | ||
<?php | ||
} else { | ||
?> | ||
<li> | ||
© <a href="http://uconn.edu">University of Connecticut</a> | ||
</li> | ||
<li> | ||
<a href="http://uconn.edu/disclaimers-and-copyrights.php">Disclaimers, Privacy & Copyright</a> | ||
</li> | ||
<?php | ||
} | ||
?> | ||
<li> | ||
<a href="<?php echo site_url(); ?>/wp-admin/">Webmaster Login</a> | ||
</li> | ||
<?php | ||
|
||
// Only display the footer if a menu of "Footer" exists in the site. | ||
if (wp_get_nav_menu_object('Footer') && count(wp_get_nav_menu_items('Footer')) > 0){ | ||
$defaults = array( | ||
'menu' => 'Footer', | ||
'container' => false, | ||
'items_wrap' => '%3$s', | ||
'depth' => 1 | ||
); | ||
wp_nav_menu( $defaults ); | ||
} | ||
|
||
?> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
<?php wp_footer();?> | ||
</body> | ||
</div><!--#uc-main--> | ||
|
||
<div id="uc-footer"> | ||
<?php get_template_part('mega-footer'); ?> | ||
<div class="container"> | ||
<ul id="uc-footer-links" class="clearfix"> | ||
<?php | ||
$options = get_option('uconn_banner_options'); | ||
$text_string = $options['text_string']; | ||
$location = $text_string; | ||
if($location == 'uchc'){ | ||
?> | ||
<li> | ||
<a href="http://www.uchc.edu/siteindex/index.html">A-Z Index</a> | ||
</li> | ||
<li> | ||
<a href="http://www.uchc.edu/" >UConn Health</a> | ||
</li> | ||
<li> | ||
<a href="http://www.uchc.edu/disclaimer/index.html">Disclaimer, Privacy Notice & Copyright</a> | ||
</li> | ||
<li> | ||
<a href="http://www.uchc.edu/directions/index.html" >Maps & Directions</a> | ||
</li> | ||
<!-- <li> | ||
<a href="http://www.uchc.edu/contact/index.html">Contact Us</a> | ||
</li> --> | ||
<li> | ||
© University of Connecticut Health Center | ||
</li> | ||
<?php | ||
} else { | ||
?> | ||
<li> | ||
© <a href="http://uconn.edu">University of Connecticut</a> | ||
</li> | ||
<li> | ||
<a href="http://uconn.edu/disclaimers-and-copyrights.php">Disclaimers, Privacy & Copyright</a> | ||
</li> | ||
<?php | ||
} | ||
?> | ||
<li> | ||
<a href="<?php echo site_url(); ?>/wp-admin/">Webmaster Login</a> | ||
</li> | ||
<?php | ||
|
||
// Only display the footer if a menu of "Footer" exists in the site. | ||
if (wp_get_nav_menu_object('Footer') && count(wp_get_nav_menu_items('Footer')) > 0){ | ||
$defaults = array( | ||
'menu' => 'Footer', | ||
'container' => false, | ||
'items_wrap' => '%3$s', | ||
'depth' => 1 | ||
); | ||
wp_nav_menu( $defaults ); | ||
} | ||
|
||
?> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
<?php wp_footer();?> | ||
</body> | ||
</html> |
Oops, something went wrong.