the_author_description()WP 1.0.0

Устарела с версии 2.8.0. Больше не поддерживается и может быть удалена. Используйте the_author_meta().

Display the description of the author of the current post.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

the_author_description();

Заметки

Список изменений

С версии 1.0.0 Введена.
Устарела с 2.8.0 Use the_author_meta()

Код the_author_description() WP 6.5.2

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