crp_excerpt_more_link_text
Filters the Read More text of the CRP excerpt.
Type: filter
Since: 3.0.0
Source: includes/frontend/class-display.php line 477
Parameters
| Type | Name | Description |
|---|---|---|
string | $more_link_text | Read More text. |
\WP_Post | $post | Source Post instance. |
Usage
add_filter( 'crp_excerpt_more_link_text', function($more_link_text, $post) {
// ...
return $more_link_text;
} );