wp_embed_excerpt_attachment()WP 4.4.0

Filters the post excerpt for the embed template.

Shows players for video and audio attachments.

Хуков нет.

Возвращает

Строку. The modified post excerpt.

Использование

wp_embed_excerpt_attachment( $content );
$content(строка) (обязательный)
The current post excerpt.

Список изменений

С версии 4.4.0 Введена.

Код wp_embed_excerpt_attachment() WP 6.5.2

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

	return $content;
}