wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_user_by_email › WordPress Function

Da2.5.0
Deprecato3.3.0
get_user_by_email ( $email )
Parametri:
  • (string) $email User's email address
    Richiesto:
Vedi:
Ritorna:
  • (bool|object) False on failure, User DB row object
Definito a:
Codex:

Retrieve user info by email.



Sorgenti

function get_user_by_email($email) {
	_deprecated_function( __FUNCTION__, '3.3.0', "get_user_by('email')" );
	return get_user_by('email', $email);
}