Forums

Join
bbPress Support ForumsTroubleshootingNeed Help Finding Location Of Function

Info

Need Help Finding Location Of Function

  1. I'm doing some integration of WordPress and bbPress and I need to know where this certain function is before the login_form function will work correctly on the WordPress site. The function I cannot find is:

    bb_is_user_logged_in

    If someone could tell me in which file this function is located, well, you would make my day.

    - Justin

  2. It's in bb-includes/pluggable.php somewhere around line 116 (in the version I'm using)

    You should read up on the grep command =)

  3. Thanks mate. This is really the first time I've dug into the bbPress code, so I'll definably take a look at the GREP command.

  4. I used this command from the bbPress root directory...

    grep -ir 'bb_is_user_logged_in' *

    Note that I'm using linux... if you are on Windows then you can download cygwin or grep for windows.

  5. You must log in to post.