get_the_author_login()
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 login name of the author of the current post.
No Hooks.
Return
String
. The author's login name (username).
Usage
get_the_author_login();
Notes
Changelog
Since 1.5.0 | Introduced. |
Deprecated since 2.8.0 | Use get_the_author_meta() |
get_the_author_login() get the author login code WP 6.7.1
function get_the_author_login() { _deprecated_function( __FUNCTION__, '2.8.0', 'get_the_author_meta(\'login\')' ); return get_the_author_meta('login'); }