
Brotli压缩:GZIP压缩替代方案
the_excerpt_embed ( No parameters )
the_excerpt_embed – 这个函数与the_excerpt相似,但专门用于嵌入式内容。它允许嵌入式内容以一种紧凑的格式显示。
显示嵌入模板的文章摘录。
旨在用于”The Loop”中。
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 ); }