Advertisement
Guest User

main-navigation.php

a guest
Sep 2nd, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.89 KB | None | 0 0
  1. <div id="navigation-wrapper">
  2.     <div id="navigation-bar">
  3.         <div id="navcontainer">
  4.         <ul class="sf-menu">
  5.                 <li<?php if ( is_front_page() ) : ?> class="selected"<?php endif; ?>>
  6.                     <a href="<?php echo site_url() ?>" title="<?php _e( 'Home', 'bp-scholar' ) ?>"><?php _e( 'Home', 'bp-scholar' ) ?></a>
  7.                 </li>
  8.            
  9.                 <?php wp_list_pages('title_li='); ?>
  10.  <li><a href="#"><?php _e( 'Exhibitors', 'bp-scholar' ) ?></a>
  11.                 <ul>
  12.                 <?php wp_list_categories('orderby=name&title_li=');
  13.                 $this_category = get_category($cat);
  14.                 if (get_categories($thiscategory->cat_ID) != "") {
  15.            
  16.                 wp_list_categories('orderby=id&show_count=0&title_li=
  17.                 &use_desc_for_title=1&child_of='.$this_category->cat_ID);
  18.            
  19.                 }
  20.                 ?>
  21.                 </ul>
  22. </li>
  23. <!--
  24. <li><a href="#"><?php _e( 'Meet the Guild Artists', 'bp-scholar' ) ?></a>
  25.     <ul>
  26.             <li<?php if (  bp_is_page( BP_MEMBERS_SLUG ) || bp_is_member() ) : ?> class="selected"<?php endif; ?>>
  27.                 <a href="<?php echo site_url() ?>/<?php echo bp_get_members_root_slug(); ?>/" title="<?php _e( 'Guild Members', 'bp-scholar' ) ?>"><?php _e( 'Guild Members', 'bp-scholar' ) ?></a>
  28.             </li>
  29.  
  30.             <?php if ( bp_is_active( 'groups' ) ) : ?>
  31.                 <li<?php if ( bp_is_page( BP_GROUPS_SLUG ) || bp_is_group() ) : ?> class="selected"<?php endif; ?>>
  32.                     <a href="<?php echo site_url() ?>/<?php echo bp_get_groups_root_slug(); ?>/" title="<?php _e( 'Artist Groups', 'bp-scholar' ) ?>"><?php _e( 'Artist Groups', 'bp-scholar' ) ?></a>
  33.                 </li>
  34.             <?php endif; ?>
  35.  
  36.                 <?php if ( 'activity' != bp_dtheme_page_on_front() && bp_is_active( 'activity' ) ) : ?>
  37.             <li<?php if ( bp_is_page( BP_ACTIVITY_SLUG ) ) : ?> class="selected"<?php endif; ?>>
  38.                 <a href="<?php echo site_url() ?>/<?php echo bp_get_activity_root_slug(); ?>/" title="<?php _e( 'Artist Updates', 'bp-scholar' ) ?>"><?php _e( 'Artist Updates', 'bp-scholar' ) ?></a>
  39.             </li>
  40.         <?php endif; ?>
  41.  
  42.  
  43.  
  44.             <?php if ( bp_is_active( 'forums' ) && bp_is_active( 'groups' ) && ( function_exists( 'bp_forums_is_installed_correctly' ) && !(int) bp_get_option( 'bp-disable-forum-directory' ) ) && bp_forums_is_installed_correctly() ) : ?>
  45.                 <li<?php if ( bp_is_page( BP_FORUMS_SLUG ) ) : ?> class="selected"<?php endif; ?>>
  46.                     <a href="<?php echo site_url() ?>/<?php echo bp_get_forums_root_slug(); ?>/" title="<?php _e( 'Guild Forums', 'bp-scholar' ) ?>"><?php _e( 'Guild Forums', 'bp-scholar' ) ?></a>
  47.                 </li>
  48.             <?php endif; ?>
  49.  
  50.             <?php if ( bp_is_active( 'blogs' ) && bp_core_is_multisite() ) : ?>
  51.                 <li<?php if ( bp_is_page( BP_BLOGS_SLUG ) ) : ?> class="selected"<?php endif; ?>>
  52.                     <a href="<?php echo site_url() ?>/<?php echo bp_get_blogs_root_slug(); ?>/" title="<?php _e( 'Artists Info', 'bp-scholar' ) ?>"><?php _e( 'Artists Info', 'bp-scholar' ) ?></a>
  53.                 </li>
  54.             <?php endif; ?>
  55.     </ul>
  56. </li>
  57. -->
  58.         <?php do_action( 'bp_nav_items' ); ?>
  59.        
  60.         </ul>          
  61.         </div>      <div class="clear"></div>
  62.     </div>
  63. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement