Guest

sbrajesh

By: a guest on Oct 13th, 2009  |  syntax: PHP  |  size: 0.27 KB  |  hits: 253  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. <?php
  2. //add the action hook
  3. add_action("bp_nav_items","extra_nav_links");
  4.  
  5. //insert the links now
  6. function extra_nav_links()
  7. {
  8. ?>
  9.  
  10. <li <?php if(is_page("events"):?> class='selected' <?php endif;?> ><a href="<?php bloginfo('wpurl')/events/">Events</a><li>
  11.  
  12. <?php
  13.  
  14. }