# the_modified_date

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

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

## Сигнатура

```php
apply_filters( 'the_modified_date', string $the_modified_date, string $format, string $before, string $after )
```

## Описание

Фильтрует дату последнего изменения записи для отображения.

## Параметры

- `$the_modified_date` `string` — обязательный. Дата последнего изменения.
- `$format` `string` — обязательный. Формат даты PHP.
- `$before` `string` — обязательный. HTML-вывод перед датой.
- `$after` `string` — обязательный. HTML-вывод после даты.

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

Дата последнего изменения.

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

Файл: `wp-includes/general-template.php:2774`

```php
$the_modified_date = apply_filters( 'the_modified_date', $the_modified_date, $format, $before, $after );
```

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

- 2.1.0 — Introduced.

## Связанные

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

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