Recent

tptn_post_title filter

tptn_post_title

Filter the post title of each list item.

Type: filter
Since: 2.0.0
Source: includes/frontend/class-display.php line 755

Parameters

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

Usage

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