# the_author_posts_link()

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

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

## Сигнатура

```php
the_author_posts_link( string $deprecated = '' )
```

## Описание

Выводит HTML-ссылку на страницу автора текущей записи.

## Параметры

- `$deprecated` `string` — необязательный, по умолчанию `''`. Не используется.

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

Файл: `wp-includes/author-template.php:366`

```php
function the_author_posts_link( $deprecated = '' ) {
	if ( ! empty( $deprecated ) ) {
		_deprecated_argument( __FUNCTION__, '2.1.0' );
	}
	echo get_the_author_posts_link();
}
```

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

- 4.4.0 — Converted into a wrapper for get_the_author_posts_link()
- 1.2.0 — Introduced.

## Связанные

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

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