Codex

Function Reference/get user by email


This function has been deprecated. That means it has been replaced by a new function or is no longer supported, and may be removed from future versions. All code that uses this function should be converted to use its replacement if one exists. See also wp-includes/deprecated.php. Use any of these functions instead.

This function basically uses the generic function 'get_user_by()'


function get_user_by_email($email) { return get_user_by('email', $email); }


The generic function is documented here: http://codex.wordpress.org/Function_Reference/get_user_by

This page is marked as incomplete. You can help Codex by expanding it.