Recent

bsearch_excerpt_more filter

bsearch_excerpt_more

Filters the string in the “more” link displayed after a trimmed excerpt.

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

Parameters

TypeNameDescription
string$more_stringThe string shown within the more link.

Usage

add_filter( 'bsearch_excerpt_more', function($more_string) {
    // ...
    return $more_string;
} );