embed_site_title_html filter-hookWP 4.4.0

Filters the site title HTML in the embed footer.

Usage

add_filter( 'embed_site_title_html', 'wp_kama_embed_site_title_html_filter' );

/**
 * Function for `embed_site_title_html` filter-hook.
 * 
 * @param string $site_title The site title HTML.
 *
 * @return string
 */
function wp_kama_embed_site_title_html_filter( $site_title ){

	// filter...
	return $site_title;
}
$site_title(string)
The site title HTML.

Changelog

Since 4.4.0 Introduced.

Where the hook is called

the_embed_site_title()
embed_site_title_html
wp-includes/embed.php 1225
echo apply_filters( 'embed_site_title_html', $site_title );

Where the hook is used in WordPress

Usage not found.