Recent

tptn_post_titlefilter

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

Type Name Description
string $title Title of the post.
object $result Object of the current post result
array $args Array of arguments

Usage

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