Recent

tptn_excerpt_more_linkfilter

Filters the Read More link text of the CRP excerpt.

Type: filter
Since: 4.0.0
Source: includes/frontend/class-display.php line 1038

Parameters

Type Name Description
string $more_link_element Read More link element.
string $more_link_text Read More text.
\WP_Post $post Source Post instance.

Usage

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