apply_filters( ‘the_modified_author’, string $display_name )

In this article

Filters the display name of the author who last edited the current post.

Parameters

$display_namestring
The author’s display name, empty string if unknown.

Source

return apply_filters( 'the_modified_author', $last_user ? $last_user->display_name : '' );

Changelog

VersionDescription
2.8.0Introduced.

User Contributed Notes

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