Skip to content

Commit

Permalink
fix nav images
Browse files Browse the repository at this point in the history
  • Loading branch information
rickyrauch committed Oct 9, 2013
1 parent 9b67796 commit ea1f9ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 22 deletions.
2 changes: 0 additions & 2 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,6 @@ function of_stylesheet() {

add_action( 'wp_head', 'of_stylesheet' );

require( get_template_directory() . '/inc/plugins/nav-menu-images/nav-menu-images.php' );

// Re-define the options-framework URL
define( 'OPTIONS_FRAMEWORK_URL', get_template_directory_uri() . '/inc/options-framework/' );

Expand Down
22 changes: 2 additions & 20 deletions header.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package Symbol
* @since Symbol 1.0
*/
?><!DOCTYPE html>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
Expand All @@ -21,17 +12,11 @@
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<?php
wp_head();
?>

<?php wp_head() ?>
</head>

<body <?php body_class(); ?>>
<?php do_action( 'before' ); ?>




<div id="page" class="snap-content">

Expand All @@ -41,15 +26,12 @@
<span class="icon-bar"></span>
</a>


<header id="masthead" class="site-header" role="banner">

<hgroup>
<h1 class="site-title"><a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
</hgroup>



<nav role="navigation" class="site-navigation main-navigation">
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
</nav><!-- .site-navigation .main-navigation -->
Expand Down

0 comments on commit ea1f9ab

Please sign in to comment.