the_modified_author filter-hook . WP 2.8.0
Filters the display name of the author who last edited the current post.
Usage
add_filter( 'the_modified_author', 'filter_function_name_190' ); function filter_function_name_190( $display_name ){ // filter... return $display_name; }
- $display_name(string)
- The author's display name.
Changelog
Since 2.8.0 | Introduced. |
Where the hook is called
the_modified_author
wp-includes/author-template.php 104
return apply_filters( 'the_modified_author', $last_user->display_name );