Created
September 14, 2019 14:00
-
-
Save topleague/ad43eea151eef6055e270ce057a389a3 to your computer and use it in GitHub Desktop.
Show a Logo Before Site Title (via Gravatar)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*----- 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