Recent

the_bsearch_excerpt filter

the_bsearch_excerpt

Filters the displayed post excerpt.

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

Parameters

TypeNameDescription
string$outputThe post excerpt.
array$argsArguments array.

Usage

add_filter( 'the_bsearch_excerpt', function($output, $args) {
    // ...
    return $output;
} );