apply_filters( ‘the_author’, string $display_name )

In this article

Filters the display name of the current post’s author.

Parameters

$display_namestring
The author’s display name.

Source

return apply_filters( 'the_author', is_object( $authordata ) ? $authordata->display_name : '' );

Changelog

VersionDescription
2.9.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.