Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Created November 19, 2015 03:18
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 reasonstousegenesis/d531400e126b74886287 to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/d531400e126b74886287 to your computer and use it in GitHub Desktop.
Add an image before the site title with Genesis
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* Add an image before the site title with Genesis
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/site-title/
*/
add_action( 'genesis_site_title', 'rtug_title_image' );
function rtug_title_image() {
echo '<img src="http://example.com/wp-content/themes/yourtheme/images/title.png">'; // replace with your image URL
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment