Recent

crp_permalinkfilter

Filter the title of each list item.

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

Parameters

Type Name Description
string $title Permalink of the post.
\WP_Post $result \WP_Post object.
array $args Array of arguments

Usage

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