Re: header.php rev 877
Let me add that you need the list item code as well, so something like this:
<?php
function add_forum_link() {
echo '<li><a href="' . site_url('forum') . '">Forums</a></li>';
}
add_action( 'bp_nav_items', 'add_forum_link' );
?>
Trent