Action hook 'embed_content_meta'

in WP Core File wp-includes/theme-compat/embed-content.php at line 122

View Source

embed_content_meta

Action Hook
Description
Prints additional meta content in the embed template.

Hook Information

File Location wp-includes/theme-compat/embed-content.php View on GitHub
Hook Type Action
Line Number 122

Hook Parameters

This hook doesn't accept any parameters.

Usage Examples

Basic Usage
<?php
// Hook into embed_content_meta
add_action('embed_content_meta', 'my_custom_function');

function my_custom_function() {
    // Your custom code here
}

Source Code Context

wp-includes/theme-compat/embed-content.php:122 - How this hook is used in WordPress core
<?php
 117  				/**
 118  				 * Prints additional meta content in the embed template.
 119  				 *
 120  				 * @since 4.4.0
 121  				 */
 122  				do_action( 'embed_content_meta' );
 123  				?>
 124  			</div>
 125  		</div>
 126  	</div>
 127  <?php

PHP Documentation

<?php
/**
				 * Prints additional meta content in the embed template.
				 *
				 * @since 4.4.0
				 */
Quick Info
  • Hook Type: Action
  • Parameters: 0
  • File: wp-includes/theme-compat/embed-content.php
Related Hooks

Related hooks will be displayed here in future updates.