Recent

crp_excerpt_more_link_text filter

Filters the Read More text of the CRP excerpt.

Type: filter
Since: 3.0.0
Source: includes/frontend/class-display.php line 477

Parameters

TypeNameDescription
string$more_link_textRead More text.
\WP_Post$postSource Post instance.

Usage

add_filter( 'crp_excerpt_more_link_text', function($more_link_text, $post) {
    // ...
    return $more_link_text;
} );