# the_author_description()

URL: https://chugunov.pro/api-wordpress/functions/the_author_description/
Проверено на WordPress 6.9, обновлено 06.08.2026.
Источник: независимый русскоязычный справочник chugunov.pro. Не является официальной документацией WordPress.

Тип: функция.
Появился в версии: 1.0.0.

> Устаревший элемент. Помечен устаревшим с версии 2.8.0.

## Сигнатура

```php
the_author_description()
```

## Описание

См. alsothe_author_meta()

## Исходный код

Файл: `wp-includes/deprecated.php:1348`

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

## История изменений

- 2.8.0 — Deprecated. Use the_author_meta()
- 1.0.0 — Introduced.

## Связанные

Использует: [`the_author_meta`](https://chugunov.pro/api-wordpress/functions/the_author_meta/), [`_deprecated_function`](https://chugunov.pro/api-wordpress/functions/_deprecated_function/).

Оригинал в официальной документации: https://developer.wordpress.org/reference/functions/the_author_description/
