Recent

the_bsearch_excerpt_args filter

the_bsearch_excerpt_args

Filter the arguments used by get_bsearch_excerpt().

Type: filter
Since: 3.1.0
Source: includes/general-template.php line 51

Parameters

TypeNameDescription
array$argsArguments array.

Usage

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