This filter provides a way to change the redirect page ID for the reset password page.
Example Usage:
add_filter( 'bricks/auth/custom_reset_password_redirect', function( $selected_reset_password_page_id ) {
return /* New reset password page ID */;
});
Parameters:
$selected_reset_password_page_id
(int|false): The ID of the custom reset password page if set; otherwise,false
.
Return:
- (int|false): The custom page ID for reset password redirection, or
false
if no custom page is specified.