embed_site_title_html
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
embed_site_title_html
wp-includes/embed.php 1232
echo apply_filters( 'embed_site_title_html', $site_title );