Skip to content

Instantly share code, notes, and snippets.

@shaynesanderson-zz
Created May 14, 2013 01:19
Show Gist options
  • Save shaynesanderson-zz/5572905 to your computer and use it in GitHub Desktop.
Save shaynesanderson-zz/5572905 to your computer and use it in GitHub Desktop.
Add content above Genesis content
<?php
add_filter ( 'genesis_before_content_sidebar_wrap', 'example_custom_header' );
function example_custom_header () {
echo '<div id="page_featured">';
echo the_post_thumbnail( 'featured-page' );
echo '</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment