I need to look up a user id by the email address they created their account with. Normally I would use:
<?php $user_ID = get_current_user_id(); ?>
But in this case, the user has not been signed in yet.
I need to look up a user id by the email address they created their account with. Normally I would use:
<?php $user_ID = get_current_user_id(); ?>
But in this case, the user has not been signed in yet.
You must be logged in to post a comment.
Found a quick way to do it: