функция
since 4.4.0
the_excerpt_embed()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
the_excerpt_embed()
Описание
Предназначено для использования в «Цикле» (The Loop).
Оригинал (английский)
Intended to be used in ‘The Loop’.
Исходный код
wp-includes/embed.php:1028
function the_excerpt_embed() {
$output = get_the_excerpt();
/**
* Filters the post excerpt for the embed template.
*
* @since 4.4.0
*
* @param string $output The current post excerpt.
*/
echo apply_filters( 'the_excerpt_embed', $output );
}
История изменений
| Версия | Описание |
|---|---|
| 4.4.0 | Introduced. |

