Bobo
Bobo

Reputation: 13

Add user to group automatically after registration in Wordpress

I installed Groups plugin in Wordpress and I want to add user to group automatically after registration in Wordpress. Does anyone know how to do it?

Upvotes: 0

Views: 513

Answers (1)

Wouter
Wouter

Reputation: 807

You can add in your functions.php

   add_action( 'user_register', 'myplugin_registration_save', 10, 1 );
    function myplugin_registration_save( $user_id ) {
    if ( isset( $_POST['first_name'] ) )
            do_shortcode('[groups_join group="Knitting"]');
        }

Upvotes: 1

Related Questions