the_author_lastname()
Deprecated from version 2.8.0. It is no longer supported and can be removed in future releases. Use the_author_meta() instead.
Display the last name of the author of the current post.
No Hooks.
Return
null
. Nothing.
Usage
the_author_lastname();
Notes
- See: the_author_meta()
Changelog
Since 0.71 | Introduced. | |
Deprecated Since 2.8.0 | Use the_author_meta() |
Code of the_author_lastname() the author lastname WP 6.0
function the_author_lastname() { _deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta(\'last_name\')' ); the_author_meta('last_name'); }