Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to link to favorites of logged user


_ck_
Participant

@_ck_

Oh if you are trying to do it from an integrated WordPress you’ll need to do this:

<?
if function_exists("get_currentuserinfo") {global $user_ID;}
else { $user_ID=bb_get_current_user_info( 'id' )}
if ($user_ID) { echo '<a href="/forums/profile.php?id='.$user_ID.'&tab=favorites">favorites</a>';} ?>

untested – change /forums/ to whatever your bbpress path is.

Skip to toolbar