Recent

crp_permalink filter

Filter the title of each list item.

Type: filter
Since: 2.5.0
Source: includes/frontend/class-display.php line 801

Parameters

TypeNameDescription
string$titlePermalink of the post.
\WP_Post$result\WP_Post object.
array$argsArray of arguments

Usage

add_filter( 'crp_permalink', function($title, $result, $args) {
    // ...
    return $title;
} );