wpseek.com
A WordPress-centric search engine for devs and theme authors



get_the_author_nickname › WordPress Function

Since1.5.0
Deprecated2.8.0
get_the_author_nickname ( No parameters )
See:
Returns:
  • (string) The author's nickname.
Defined at:
Codex:

Retrieve the nickname of the author of the current post.



Source

function get_the_author_nickname() {
	_deprecated_function( __FUNCTION__, '2.8.0', 'get_the_author_meta(\'nickname\')' );
	return get_the_author_meta('nickname');
}