Recent

wherego_excerpt filter

wherego_excerpt

Filters excerpt generated by wherego.

Type: filter
Since: 1.3
Source: includes/frontend/class-display.php line 623

Parameters

TypeNameDescription
string$outputFormatted excerpt.
int|\WP_Post$postPost ID.
int$excerpt_lengthLength of the excerpt.
bool$use_excerptWhether to use the excerpt.

Usage

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