Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Make sure to add the wpe-login parameter to the lostpassword URL.
<?php
/**
* Make sure to add the wpe-login parameter to the lostpassword URL.
*/
function my_fix_wpelogin( $url ) {
$url = add_query_arg( 'wpe-login', true, $url );
return $url;
}
add_filter( 'lostpassword_url', 'my_fix_wpelogin' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment