# the_content_more_link

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

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

## Сигнатура

```php
apply_filters( 'the_content_more_link', string $more_link_element, string $more_link_text )
```

## Описание

Фильтрует текст ссылки «Читать далее».

## Параметры

- `$more_link_element` `string` — обязательный. Элемент ссылки «Читать далее».
- `$more_link_text` `string` — обязательный. Текст «Читать далее».

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

Элемент ссылки «Читать далее».

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

Файл: `wp-includes/post-template.php:376`

```php
$output .= apply_filters( 'the_content_more_link', ' <a href="' . get_permalink( $_post ) . "#more-{$_post->ID}\" class=\"more-link\">$more_link_text</a>", $more_link_text );
```

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

- 2.8.0 — Introduced.

## Связанные

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

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