Title: the_modified_author
Published: April 25, 2014
Last modified: May 20, 2026

---

# apply_filters( ‘the_modified_author’, string $display_name )

## In this article

 * [Parameters](https://developer.wordpress.org/reference/hooks/the_modified_author/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/the_modified_author/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/the_modified_author/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/the_modified_author/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/the_modified_author/?output_format=md#wp--skip-link--target)

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

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/the_modified_author/?output_format=md#parameters)󠁿

 `$display_name`string

The author’s display name, empty string if user is unavailable.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/the_modified_author/?output_format=md#source)󠁿

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

[View all references](https://developer.wordpress.org/reference/files/wp-includes/author-template.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-includes/author-template.php#L113)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-includes/author-template.php#L113-L113)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/the_modified_author/?output_format=md#related)󠁿

| Used by | Description | 
| [get_the_modified_author()](https://developer.wordpress.org/reference/functions/get_the_modified_author/)`wp-includes/author-template.php` |

Retrieves the author who last edited the current post.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/the_modified_author/?output_format=md#changelog)󠁿

| Version | Description | 
| [2.8.0](https://developer.wordpress.org/reference/since/2.8.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Fthe_modified_author%2F)
before being able to contribute a note or feedback.