stevenkword / BuddyPress-Automatic-Friends

Automatically create and accept friendships for specified users upon new user registration. * Requires BuddyPress
4 stars 3 forks source link

Add new users to global friends automatically #4

Closed fa8ster closed 8 years ago

fa8ster commented 8 years ago

Is there a way to add new users automatically to global friends also so that in the end everybody is friended with everyone?

fa8ster commented 8 years ago

something like this?

add_action('login_init', 'mx_add_global_friend', 99, 1);
function mx_add_global_friend()
{
    update_usermeta(get_current_user_id(), BPAF_Core::METAKEY, true);
}