显示嵌入模板的摘录后。
原型
the_excerpt_embed()
描述
打算用于’The Loop’。
源文件
路径:wp-includes/embed.php
<?php
...
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 );
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/the_excerpt_embed/