wpseek.com
A WordPress-centric search engine for devs and theme authors



get_the_author_email › WordPress Function

Since1.5.0
Deprecated2.8.0
get_the_author_email ( No parameters )
See:
Returns:
  • (string) The author's username.
Defined at:
Codex:

Retrieve the email of the author of the current post.



Source

function get_the_author_email() {
	_deprecated_function( __FUNCTION__, '2.8.0', 'get_the_author_meta(\'email\')' );
	return get_the_author_meta('email');
}