embed_footer хук-событиеWP 4.4.0

Prints scripts or data before the closing body tag in the embed template.

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

add_action( 'embed_footer', 'wp_kama_embed_footer_action' );

/**
 * Function for `embed_footer` action-hook.
 * 
 * @return void
 */
function wp_kama_embed_footer_action(){

	// action...
}

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

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

Где вызывается хук

В файле: /wp-includes/theme-compat/footer-embed.php
embed_footer

Где используется хук в WordPress

wp-includes/default-filters.php 695
add_action( 'embed_footer', 'print_embed_sharing_dialog' );
wp-includes/default-filters.php 696
add_action( 'embed_footer', 'print_embed_scripts' );
wp-includes/default-filters.php 697
add_action( 'embed_footer', 'wp_print_footer_scripts', 20 );