get_the_author_email() WP 1.5.0
Deprecated from version 2.8.0. It is no longer supported and can be removed in future releases. Use get_the_author_meta() instead.╳
Retrieve the email of the author of the current post.
No Hooks.
Return
String
. The author's username.
Usage
get_the_author_email();
Notes
- See: get_the_author_meta()
Changelog
Since 1.5.0 | Introduced. | |
Deprecated Since 2.8.0 | Use get_the_author_meta() |
Code of get_the_author_email() get the author email WP 5.7.1
function get_the_author_email() {
_deprecated_function( __FUNCTION__, '2.8.0', 'get_the_author_meta(\'email\')' );
return get_the_author_meta('email');
}