Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. add_action('wp_login', array($this, 'knp_aci_login_check'), 1, 2);
  2.  
  3. public function knp_aci_login_check( $user_login, $user ){
  4.  
  5. $contact = $this->request->api_connect(
  6. 'contacts?filters[email]='.$user_login,
  7. 'GET'
  8. );
  9.  
  10. if (wp_remote_retrieve_response_code( $contact ) == 200 ) {
  11.  
  12. setcookie( 'ac-status', 'true', 365 * DAY_IN_SECONDS, '/', get_site_url() );
  13.  
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement