# the_modified_date()

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

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

## Сигнатура

```php
the_modified_date( string $format = '', string $before = '', string $after = '', bool $display = true ): string|null
```

## Описание

Выводит дату последнего изменения записи.

## Параметры

- `$format` `string` — необязательный, по умолчанию `''`. Формат даты PHP. По умолчанию используется опция 'date_format'.
- `$before` `string` — необязательный, по умолчанию `''`. Вывод перед датой.
- `$after` `string` — необязательный, по умолчанию `''`. Вывод после даты.
- `$display` `bool` — необязательный, по умолчанию `true`. Выводить дату или возвращать её.

## Возвращаемое значение

`string|null`

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

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

```php
function the_modified_date( $format = '', $before = '', $after = '', $display = true ) {
	$the_modified_date = $before . get_the_modified_date( $format ) . $after;

	/**
	 * Filters the date a post was last modified, for display.
	 *
	 * @since 2.1.0
	 *
	 * @param string $the_modified_date The last modified date.
	 * @param string $format            PHP date format.
	 * @param string $before            HTML output before the date.
	 * @param string $after             HTML output after the date.
	 */
	$the_modified_date = apply_filters( 'the_modified_date', $the_modified_date, $format, $before, $after );

	if ( $display ) {
		echo $the_modified_date;
	} else {
		return $the_modified_date;
	}
}
```

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

- 2.1.0 — Introduced.

## Связанные

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

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