Warning: This function has been deprecated. Use get_the_author_meta() instead.
get_author_name() WordPress Function
The get_author_name() function is used to get the author's name. This function can be used within the loop.
get_author_name( int $auth_id = false ) #
Retrieve the specified author’s preferred display name.
Description
See also
Parameters
- $auth_id
(int)(Optional)The ID of the author.
Default value: false
Return
(string) The author's display name.
Source
File: wp-includes/deprecated.php
function get_author_name( $auth_id = false ) { _deprecated_function( __FUNCTION__, '2.8.0', 'get_the_author_meta(\'display_name\')' ); return get_the_author_meta('display_name', $auth_id); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.8.0 | Use get_the_author_meta() |
1.0.0 | Introduced. |