函数文档

wp_embed_excerpt_attachment()

💡 云策文档标注

概述

wp_embed_excerpt_attachment() 是一个 WordPress 过滤器函数,用于在嵌入模板中修改文章摘要,专门处理附件页面以显示视频或音频播放器。

关键要点

  • 此函数是一个过滤器,作用于嵌入模板中的文章摘要。
  • 当检测到当前页面是附件页面时,它会调用 prepend_attachment() 函数来包装附件内容。
  • 函数返回修改后的摘要字符串,非附件页面则返回原始内容。

代码示例

function wp_embed_excerpt_attachment( $content ) {
	if ( is_attachment() ) {
		return prepend_attachment( '' );
	}

	return $content;
}

注意事项

  • 此函数从 WordPress 4.4.0 版本开始引入。
  • 相关函数包括 is_attachment() 用于判断附件页面,prepend_attachment() 用于处理附件内容。

📄 原文内容

Filters the post excerpt for the embed template.

Description

Shows players for video and audio attachments.

Parameters

$contentstringrequired
The current post excerpt.

Return

string The modified post excerpt.

Source

function wp_embed_excerpt_attachment( $content ) {
	if ( is_attachment() ) {
		return prepend_attachment( '' );
	}

	return $content;
}

Changelog

Version Description
4.4.0 Introduced.