Recent

tptn_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 1004

Parameters

TypeNameDescription
string|null$more_link_textRead More text. Null uses the default “(more…)” link.
\WP_Post$postSource Post instance.

Usage

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