Skip to content

Instantly share code, notes, and snippets.

@topleague
Created September 14, 2019 14:00
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 topleague/ad43eea151eef6055e270ce057a389a3 to your computer and use it in GitHub Desktop.
Save topleague/ad43eea151eef6055e270ce057a389a3 to your computer and use it in GitHub Desktop.
Show a Logo Before Site Title (via Gravatar)
/*----- Display Logo before Site Title -----*/
add_action( 'genesis_header', 'lwp_site_image', 5 );
function lpw_site_image() {
$header_image = '<img src="https://freeiconshop.com/files/edd/person-girl-flat.png" alt="" />';
printf( '<div class="site-image">%s</div>', $header_image );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment