WordPress Version: 4.6
/**
* Display the nickname of the author of the current post.
*
* @since 0.71
* @deprecated 2.8.0 Use the_author_meta()
* @see the_author_meta()
*/
function the_author_nickname()
{
_deprecated_function(__FUNCTION__, '2.8.0', 'the_author_meta(\'nickname\')');
the_author_meta('nickname');
}