Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: how do i utilise the bbpress cookie for something else also…

You can define the parameters like the cookie name and domain, so you should be able to do what you want here. There is already functions though that can do things if a user is logged in. For example:

<?php if (bb_current_user_can('write_posts')) : ?>
DO SOMETHING
<?php endif; ?>

This has it so if the user is logged in and can write posts (default member) then do something or put in a piece of code.

Hope that helps.

Trent

Skip to toolbar