Skip to content

Instantly share code, notes, and snippets.

@topleague
Created April 25, 2018 08:12
Show Gist options
  • Save topleague/fc68a7de418ce054be440abc2e53e3b1 to your computer and use it in GitHub Desktop.
Save topleague/fc68a7de418ce054be440abc2e53e3b1 to your computer and use it in GitHub Desktop.
Display Excerpt as Subtitle in Post/Page Except Front Page
//* Display Excerpt as Post Subtitle in Genesis
add_action( 'genesis_entry_header', 'content_excerpt', 10 );
function content_excerpt() {
if ( is_singular( 'page' ) | is_singular( 'post' ) && !is_front_page() ) {
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