lmartins
11/12/2014 - 8:41 AM

Show only excerpts on search page

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';
}