Recent

wherego_permalink filter

Filter the title of each list item.

Type: filter
Since: 2.3.0
Source: includes/frontend/class-display.php line 521

Parameters

TypeNameDescription
string$titlePermalink of the post.
object$resultObject of the current post result
array$argsArray of arguments

Usage

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