функция
since 0.71
the_excerpt()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
the_excerpt()
Описание
Выводит отрывок записи.
Исходный код
wp-includes/post-template.php:390
function the_excerpt() {
/**
* Filters the displayed post excerpt.
*
* @since 0.71
*
* @see get_the_excerpt()
*
* @param string $post_excerpt The post excerpt.
*/
echo apply_filters( 'the_excerpt', get_the_excerpt() );
}
История изменений
| Версия | Описание |
|---|---|
| 0.71 | Introduced. |

