
sbrajesh
By: a guest on Oct 13th, 2009 | syntax:
PHP | size: 0.27 KB | hits: 253 | expires: Never
<?php
//add the action hook
add_action("bp_nav_items","extra_nav_links");
//insert the links now
function extra_nav_links()
{
?>
<li <?php if(is_page("events"):?> class='selected' <?php endif;?> ><a href="<?php bloginfo('wpurl')/events/">Events</a><li>
<?php
}