Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div id="wrapper">
- <div id="top">
- <div id="header">
- <div class="col-full">
- <div id="logo" class="fl">
- <?php if ( 'true' != get_option( 'woo_texttitle' ) ) { ?><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'description' ) ); ?>"><img class="title" src="<?php echo esc_url( $logo_url ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" /></a><?php } ?>
- <?php if( is_single() || is_page() ) : ?>
- <span class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></span>
- <?php else: ?>
- <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
- <?php endif; ?>
- <span class="site-description"><?php bloginfo( 'description' ); ?></span>
- </div><!-- /#logo -->
- <?php
- if ( function_exists( 'has_nav_menu' ) && has_nav_menu( 'primary-menu' ) ) {
- wp_nav_menu( array( 'depth' => 4, 'sort_column' => 'menu_order', 'container' => 'ul', 'menu_id' => 'nav', 'menu_class' => 'fr', 'theme_location' => 'primary-menu' ) );
- } else {
- ?>
- <ul id="nav" class="fr">
- <?php
- if ( 'true' == get_option( 'woo_custom_nav_menu' ) ) {
- if ( function_exists( 'woo_custom_navigation_output' ) )
- woo_custom_navigation_output( 'depth=4' );
- } else { ?>
- <?php if ( is_page() || is_archive() || is_single() || is_tag() ) { $highlight = 'page_item'; } else { $highlight = 'page_item current_page_item'; } ?>
- <li class="<?php echo esc_attr( $highlight ); ?> home_link"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php _e( 'Home', 'woothemes' ); ?></a></li>
- <?php wp_list_pages( 'sort_column=menu_order&depth=4&title_li=' ); ?>
- <?php } ?>
- </ul><!-- /#nav -->
- <?php } ?>
- </div><!-- /.col-full -->
- </div><!-- /#header -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement