- Nuevo logo con efecto git-svn-id: https://192.168.0.254/svn/Proyectos.OriginalHouse_Web/trunk@22 54e8636e-a86c-764f-903d-b964358a1ae2
67 lines
3.3 KiB
PHP
67 lines
3.3 KiB
PHP
<?php
|
|
global $woo_options;
|
|
|
|
//<div id="navigation-top" class="fr">
|
|
// < ? php
|
|
// if ( function_exists( 'has_nav_menu') && has_nav_menu( 'primary-menu' ) ) {
|
|
// wp_nav_menu( array( 'depth' => 6, 'sort_column' => 'menu_order', 'container' => 'ul', 'menu_id' => 'primary-nav', 'menu_class' => 'nav fr', 'theme_location' => 'primary-menu' ) );
|
|
// } else {
|
|
// ? >
|
|
// <ul id="primary-nav" class="nav fr">
|
|
//<?php
|
|
// if ( isset($woo_options[ 'woo_custom_nav_menu' ]) AND $woo_options[ 'woo_custom_nav_menu' ] == 'true' ) {
|
|
// if ( function_exists( 'woo_custom_navigation_output') )
|
|
// woo_custom_navigation_output();
|
|
// } else { ? >
|
|
//< ? php if ( is_page() ) $highlight = "page_item"; else $highlight = "page_item current_page_item"; ? >
|
|
// <li class="< ? php echo $highlight; ? >"><a href="< ? php bloginfo( 'url' ); ? >">< ? php _e( 'Home', 'woothemes' ); ? ></a></li>
|
|
//< ? php
|
|
// wp_list_pages( 'sort_column=menu_order&depth=6&title_li=&exclude=' );
|
|
// }
|
|
// ? >
|
|
// </ul><!-- /#nav -->
|
|
// < ? php } ? >
|
|
//</div>
|
|
|
|
?>
|
|
|
|
<div id="navigation">
|
|
|
|
<?php
|
|
if ( function_exists( 'has_nav_menu' ) && has_nav_menu('secondary-menu' ) ) {
|
|
wp_nav_menu( array( 'depth' => 6, 'sort_column' => 'menu_order', 'container' => 'ul', 'menu_id' => 'main-menu', 'menu_class' => 'nav fl','theme_location' => 'secondary-menu' ) );
|
|
} else {
|
|
?>
|
|
<ul id="main-nav" class="nav fl">
|
|
<?php
|
|
if ( isset($woo_options[ 'woo_custom_nav_menu' ]) AND $woo_options[ 'woo_custom_nav_menu' ] == 'true' ) {
|
|
if ( function_exists( 'woo_custom_navigation_output') )
|
|
woo_custom_navigation_output();
|
|
} else { ?>
|
|
<?php if ( is_page() ) $highlight = "page_item"; else $highlight = "page_item current_page_item"; ?>
|
|
<li class="<?php echo $highlight; ?>"><a href="<?php bloginfo( 'url' ); ?>"><?php _e( 'Home', 'woothemes' ) ?></a></li>
|
|
<?php
|
|
wp_list_categories( 'sort_column=menu_order&depth=6&title_li=&exclude=' );
|
|
}
|
|
?>
|
|
</ul><!-- /#nav -->
|
|
<?php } ?>
|
|
|
|
<?php if ( $woo_options[ 'woo_footer_social' ] == 'true' ) { ?>
|
|
<div class="social-icons fr">
|
|
<ul>
|
|
<?php if ( $woo_options[ 'woo_connect_twitter' ] != '' ) { ?>
|
|
<li class="twitter"><a target="_blank" href="<?php echo $woo_options[ 'woo_connect_twitter' ]; ?>"><?php _e( 'Twitter', 'woothemes' ); ?></a></li>
|
|
<?php } if ( $woo_options[ 'woo_connect_facebook' ] != '' ) { ?>
|
|
<li class="facebook"><a target="_blank" href="<?php echo $woo_options[ 'woo_connect_facebook' ]; ?>"><?php _e( 'Facebook', 'woothemes' ); ?></a></li>
|
|
<?php } if ( $woo_options[ 'woo_connect_blogger' ] != '' ) { ?>
|
|
<li class="blogger"><a target="_blank" href="<?php echo $woo_options[ 'woo_connect_blogger' ]; ?>"><?php _e( 'Blogger', 'woothemes' ); ?></a></li>
|
|
<?php } ?>
|
|
</ul>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
|
|
</div><!-- /#navigation -->
|
|
|