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