Recent

tptn_author_name filter

tptn_author_name

Filter the author name.

Type: filter
Since: 1.9.1
Source: includes/frontend/class-display.php line 782

Parameters

TypeNameDescription
string$author_nameProper name of the post author.
object$author_infoWP_User object of the post author

Usage

add_filter( 'tptn_author_name', function($author_name, $author_info) {
    // ...
    return $author_name;
} );