wp_embed_excerpt_attachment()WP 4.4.0

Filters the post excerpt for the embed template.

Shows players for video and audio attachments.

No Hooks.

Return

String. The modified post excerpt.

Usage

wp_embed_excerpt_attachment( $content );
$content(string) (required)
The current post excerpt.

Changelog

Since 4.4.0 Introduced.

wp_embed_excerpt_attachment() code WP 6.5.2

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

	return $content;
}