Recent

tptn_excerpt_more_link_textfilter

Filters the Read More text of the CRP excerpt.

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

Parameters

Type Name Description
string|null $more_link_text Read More text. Null uses the default “(more…)” link.
\WP_Post $post Source Post instance.

Usage

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