Created
August 22, 2019 11:31
-
-
Save justingreerbbi/3f60aab604c70d2fc688d642e5d5c704 to your computer and use it in GitHub Desktop.
Do Action Hook for WP OAuth Server Client for User Creation or Login.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Plugin: Simple Single Sign On | |
Plugin File: /includes/callback.php | |
/* | |
* Action runs directly after a default user is created | |
*/ | |
do_action( 'wpoc_user_created', $user_info, 1 ); | |
/* | |
* Action runs directly before a user is logged in | |
*/ | |
do_action( 'wpoc_user_login', $user_info, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment