Show only excerpts on search page
/**
* Force the search results page to only show Excertps
*/
add_action( 'genesis_before_loop', 'mw_show_only_excerpts_search' );
function mw_show_only_excerpts_search() {
if ( is_search() ) {
add_filter( 'genesis_pre_get_option_content_archive', 'mw_show_excerpts' );
}
}
function mw_show_excerpts() {
return 'excerpts';
}