Login with cookie but without using WordPress code
I can’t believe I actually managed to find this answer on my own!!! 😀 In case anyone else is ever curious about this: The name of the cookie is defined in the constant LOGGED_IN_COOKIE To get the value thereof just setup an action like so: add_action( ‘set_logged_in_cookie’, ‘action_set_logged_in_cookie’, 10, 5 ); function action_set_logged_in_cookie( $logged_in_cookie, $expire, … Read more