Skip to content

Instantly share code, notes, and snippets.

@JulioPotier
Created December 9, 2015 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JulioPotier/45a425c14adbc807e62d to your computer and use it in GitHub Desktop.
Save JulioPotier/45a425c14adbc807e62d to your computer and use it in GitHub Desktop.
add_filter( 'embed_site_title_html', 'baw_embed_site_title' );
function baw_embed_site_title( $title ) {
return '<a href="http://wpsolo.fr" target="_top"><img src="/wp-content/uploads/2011/07/iMovie-Logo.png" width="32" height="32" alt="" class="wp-embed-site-icon"><span>MyMovies</span></a>';
}
add_action( 'embed_content', 'baw_embed_content' );
function baw_embed_content() {
echo '<i>Rating</i>: ' . str_repeat( '&bigstar;', 5 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment