Re: Make BBPress a Page in WordPress???
here’s what I did to get a page in wordpress in my navigation bar that redirects to the bbpress part of my site: set up a page template and made sure it was selected when I set up the forum page in wordpress – the template simply included redirection code:
<?php
/*
Template Name: Forum Section
*/
?>
<?php
header( ‘Location: http://www.yourdomain.com/your-forum-name-directory’ ) ;
?>