Filters the display name of the author who last edited the current post.
$display_namestringwp-includes/author-template.php:113get_the_modified_author() * Filters the display name of the author who last edited the current post. * * @since 2.8.0 * * @param string $display_name The author's display name, empty string if user is unavailable. */ return apply_filters( 'the_modified_author', $last_user ? $last_user->display_name : '' );} /** * Displays the name of the author who last edited the current post, * if the author's ID is available. *Introduced in 2.8.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.