Extract Bbpress Php Script

I need to access a BBPress script from outside of BBPRess so that if a user is logged into the BBPress forum, the Welcome, Name | Logout will appear on the other non BBPress pages of the website.

The “Name” is a link to the forum user profile page. To set up the link properly, the Cookie must be retrieved and the userId obtained to get the Name from the user table.

Here is the BBPress code from INSIDE of the BBPress forum:

<?php printf(__(‘Welcome, %1$s’), bb_get_profile_link(bb_get_current_user_info( ‘name’ )));?>
<?php bb_admin_link( ‘before= | ‘ );?>
| <?php bb_logout_link(); ?>

I am looking to have this code rewritten for use outside of the BBPress forum.

Let me know if you have experience working with BBPress or similar OO PHP code.

Leave a Reply

Your email address will not be published. Required fields are marked *