wp_embed_excerpt_attachment()
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() wp embed excerpt attachment code WP 6.6.2
function wp_embed_excerpt_attachment( $content ) { if ( is_attachment() ) { return prepend_attachment( '' ); } return $content; }