the_author_description()WP 1.0.0

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 description of the author of the current post.

No Hooks.

Return

null. Nothing (null).

Usage

the_author_description();

Notes

Changelog

Since 1.0.0 Introduced.
Deprecated since 2.8.0 Use the_author_meta()

the_author_description() code WP 6.5.2

function the_author_description() {
	_deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta(\'description\')' );
	the_author_meta('description');
}