Info
- 2 posts
- 2 voices
- Started 2 years ago by phpbroker1982
- Latest reply from pratikom
- This topic is resolved
BBPress Auto Login
-
- Posted 2 years ago #
I need to implement the Auto Login to BBPress. I have the steps of Auto Login to WordPress and here are the steps:
require_once ('blog/wp-blog-header.php');
$user_login = 'screen_name';
$user = get_userdatabylogin($user_login);
$user_id = $user->ID;wp_set_current_user($user_id, $user_login);
wp_set_auth_cookie($user_id);
do_action('wp_login', $user_login);Could you please help me to change this code for BBPress Login?
Thank You.
-
- Posted 2 years ago #
Hi
Use this one for BBpressrequire('bbpress/bb-load.php');
$user = bb_login( @$_POST['login_id'], @$_POST['pass'], '' ); -
You must log in to post.