Last active
October 14, 2017 21:47
-
-
Save srikat/6912382 to your computer and use it in GitHub Desktop.
Force excerpts in Search results page regardless of Content Archives themes settings in Genesis
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
add_action( 'genesis_before_loop', 'sk_excerpts_search_page' ); | |
function sk_excerpts_search_page() { | |
if ( is_search() ) { | |
add_filter( 'genesis_pre_get_option_content_archive', 'sk_show_excerpts' ); | |
} | |
} | |
function sk_show_excerpts() { | |
return 'excerpts'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment