Created
July 15, 2017 06:03
-
-
Save topleague/bac4285488bc87434f70a7fde4b95475 to your computer and use it in GitHub Desktop.
Display Excerpt as Page Subtitle in Genesis (Conditionally)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* Display Excerpt as Post Subtitle in Genesis | |
add_action( 'genesis_entry_content', 'leaguewp_post_subtitle', 9 ); | |
function leaguewp_post_subtitle() { | |
if ( is_singular( 'post' ) && 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