# the_author_posts_link

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

Тип: хук-фильтр.
Появился в версии: 2.9.0.

## Сигнатура

```php
apply_filters( 'the_author_posts_link', string $link, string $author, string $title )
```

## Описание

Фильтрует ссылку на страницу автора текущей записи.

## Параметры

- `$link` `string` — обязательный. HTML-ссылка.
- `$author` `string` — обязательный. Отображаемое имя автора.
- `$title` `string` — обязательный. Текст, изначально использованный для атрибута title.

## Фильтруемое значение

HTML-ссылка.

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

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

```php
return apply_filters( 'the_author_posts_link', $link, $author, $title );
```

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

- 7.0.0 — Added $author and $title parameters.
- 2.9.0 — Introduced.

## Связанные

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

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