wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_embed_excerpt_attachment › WordPress Function

Seit4.4.0
Veraltetn/v
wp_embed_excerpt_attachment ( $content )
Parameter:
  • (string) $content The current post excerpt.
    Erforderlich: Ja
Gibt zurück:
  • (string) The modified post excerpt.
Definiert in:
Codex:

Filters the post excerpt for the embed template.

Shows players for video and audio attachments.


Quellcode

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

	return $content;
}