Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
IE Conditional Comments, RSS Feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmbacon committed Oct 6, 2014
1 parent dc6121a commit 877bc8e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 28 deletions.
6 changes: 6 additions & 0 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -660,4 +660,10 @@ public function fields_radio() {

}
new Add_Settings_Field();

function hale_setup() {
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
}
add_action( 'after_setup_theme', 'hale_setup' );
?>
48 changes: 20 additions & 28 deletions header.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,12 @@
$nav2 = get_theme_mod( 'navoption2','with-drop');
?>
<!doctype html>
<!-- UCONN Template v5.0 July 2013 by UITS Web Lab. Help: http://webtools.uconn.edu or contact webdev@uconn.edu -->
<!--[if lt IE 7]> <html <?php language_attributes(); ?> class="ie lte9 lte8 lte7 lte6"> <![endif]-->
<!--[if IE 7]> <html <?php language_attributes(); ?> class="ie ie7 lte9 lte8 lte7"> <![endif]-->
<!--[if IE 8]> <html <?php language_attributes(); ?> class="ie ie8 lte9 lte8"> <![endif]-->
<!--[if IE 9]> <html <?php language_attributes(); ?> class="ie ie9 lte9"> <![endif]-->
<!--[if gt IE 9]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Expand All @@ -31,13 +25,14 @@
<?php bloginfo('name'); ?>
&#8250; UCONN</title>
<?php wp_head();?>
<!--<link href="<?php bloginfo('template_url'); ?>/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="<?php bloginfo('template_url'); ?>/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet">
<link href="<?php bloginfo('template_url'); ?>/uc-print.css" rel="stylesheet" media="print">
-->
</head>
<!--[if lt IE 7]> <body class="ie lte9 lte8 lte7 lte6"> <![endif]-->
<!--[if IE 7]> <body class="ie ie7 lte9 lte8 lte7"> <![endif]-->
<!--[if IE 8]> <body class="ie ie8 lte9 lte8"> <![endif]-->
<!--[if IE 9]> <body class="ie ie9 lte9"> <![endif]-->
<!--[if gt IE 9]><!-->
<body>
<!--<![endif]-->
<?php if(function_exists('uconn_banner_hook')){uconn_banner_hook();}?>
<div id="uc-titlebar" class="uc-titlebar-gradient gradient clearfix">
<div class="container">
Expand All @@ -58,22 +53,19 @@
<div class="navbar-inner">
<a class="btn btn-navbar clearfix" id="uc-nav-mobile" data-toggle="collapse" data-target=".nav-collapse"> <span class="menu-icon"><span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span></span> <span class="menu-label">Menu</span></a>
<div class="nav-collapse collapse">
<?php


wp_nav_menu(
array(
'menu' => 'primary', /* menu name */
'menu_class' => 'nav '.$nav1.' '.$nav2,
'theme_location' => 'primary', /* where in the theme it's assigned */
'container' => false, /* container class */
'fallback_cb' => 'hale_main_nav_fallback',
'items_wrap' => '<ul id="%1$s" class="%2$s"><li><a href="'.home_url().'">Home</a></li>%3$s</ul>',
'walker' => new Bootstrap_Nav_Walker()/*,
'with_search' => true*/
)
);

<?php
wp_nav_menu(
array(
'menu' => 'primary', /* menu name */
'menu_class' => 'nav '.$nav1.' '.$nav2,
'theme_location' => 'primary', /* where in the theme it's assigned */
'container' => false, /* container class */
'fallback_cb' => 'hale_main_nav_fallback',
'items_wrap' => '<ul id="%1$s" class="%2$s"><li><a href="'.home_url().'">Home</a></li>%3$s</ul>',
'walker' => new Bootstrap_Nav_Walker()/*,
'with_search' => true*/
)
);
?>
</div>
</div>
Expand Down

0 comments on commit 877bc8e

Please sign in to comment.