I scratched my head for a while trying to figure out how to add bbpress registration links to my WordPress theme until I finally came across this bbpress tutorial.
To add a registration link to your wordpress site, you need to copy the page.php theme of your file into a new file that you call bbpress.php.
In the bbpress.php file you add:
<div class="forum_register">
<?php
if (! is_user_logged_in() ) {
echo "Welcom to the bad breath forums! <br>Please ";
wp_loginout($_SERVER['REQUEST_URI']);
wp_register(__(' or '));
echo " to post.";
}
?>
</div>
Example of CSS code:
.forum_register
{
margin: 0 0 10px;
padding: 5px;
border: 1px solid #347235;
background: #98FB98;
}

