the_author_login
Display the login name of the author of the current post.
Description
the_author_login();
Usage
if ( !function_exists( 'the_author_login' ) ) { require_once ABSPATH . WPINC . '/deprecated.php'; } // NOTICE! Understand what this does before running. $result = the_author_login();
Defined (1)
The function is defined in the following location(s).
- /wp-includes/deprecated.php
- function the_author_login() {
- _deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta(\'login\')' );
- the_author_meta('login');
- }