Skip to content

Instantly share code, notes, and snippets.

@topleague
Created July 9, 2017 12:12
Show Gist options
  • Save topleague/9767d456467d8cecc7969b97443c87de to your computer and use it in GitHub Desktop.
Save topleague/9767d456467d8cecc7969b97443c87de to your computer and use it in GitHub Desktop.
Display Excerpt as Post Subtitle in Genesis
//* Display Excerpt as Post Subtitle in Genesis
add_action( 'genesis_entry_header', 'wpsites_excerpt', 10 );
function wpsites_excerpt() {
if ( is_singular( 'post' ) && has_excerpt() ) {
/*if ( is_singular( 'post' && 'page' ) && has_excerpt() ) {*/
printf( '<p class="excerpts">%s</p>', get_the_excerpt() );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment