Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action( 'wp_login', 'award_points_for_logins', 1, 2 );
- function award_points_for_logins( $user_login, $user = NULL ) {
- // If myCRED is disabled, avoid PHP fatal errors.
- if ( ! class_exists( 'myCRED_Module' ) ) return;
- // Load the myCRED Hook for loggins
- $prefs = get_option( 'mycred_pref_hooks', array() );
- $mycred_hook = new myCRED_Hook_Logging_In( $prefs['hook_prefs'] );
- // Run the hook now
- $mycred_hook->logging_in( $user_login, $user );
- }
Advertisement
Add Comment
Please, Sign In to add comment