Recent

get_bsearch_excerpt filter

get_bsearch_excerpt

Filter formatted string with search result exeerpt

Type: filter
Since: 3.0.0
Source: includes/general-template.php line 140

Parameters

TypeNameDescription
string$outputFormatted excerpt
WP_Post$postWP_Post instance.
int$excerpt_lengthLength of the excerpt in words
bool$use_excerptUse post excerpt or content?
string$contentContent that is used to create the excerpt.

Usage

add_filter( 'get_bsearch_excerpt', function($output, $post, $excerpt_length, $use_excerpt, $content) {
    // ...
    return $output;
} );