embed_content_meta action-hookWP 4.4.0

Prints additional meta content in the embed template.

Usage

add_action( 'embed_content_meta', 'wp_kama_embed_content_meta_action' );

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

	// action...
}

Changelog

Since 4.4.0 Introduced.

Where the hook is called

In file: /wp-includes/theme-compat/embed-content.php
embed_content_meta
wp-includes/theme-compat/embed-content.php 122
do_action( 'embed_content_meta' );

Where the hook is used in WordPress

wp-includes/default-filters.php 692
add_action( 'embed_content_meta', 'print_embed_comments_button' );
wp-includes/default-filters.php 693
add_action( 'embed_content_meta', 'print_embed_sharing_button' );