Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 23, 2015 11:38
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 braddalton/6629292 to your computer and use it in GitHub Desktop.
Save braddalton/6629292 to your computer and use it in GitHub Desktop.
Use is_home() if using a static front page in the reading settings and not the default.
/**
* @author Brad Dalton - WP Sites
* @example http://wpsites.net/web-design/code-snippets-for-adding-custom-functions/
*/
function image_before_blog() {
if(is_page_template(page_blog-php) )
echo '<div class="custom-image">Add Your Images HTML Here</div>';
};
add_action('genesis_before_loop', 'image_before_blog');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment