Make WordPress Core


Ignore:
Timestamp:
04/15/2022 01:53:33 PM (3 years ago)
Author:
audrasjb
Message:

Docs: Fix a docblock typo in get_the_modified_author.

Follow-up to [53187].

See #55420.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/author-template.php

    r53187 r53188  
    8787 * @since 2.8.0
    8888 *
    89  * @return string|void The author's display name, empty string if unkown.
     89 * @return string|void The author's display name, empty string if unknown.
    9090 */
    9191function get_the_modified_author() {
     
    100100         * @since 2.8.0
    101101         *
    102          * @param string $display_name The author's display name, empty string if unkown.
     102         * @param string $display_name The author's display name, empty string if unknown.
    103103         */
    104104        return apply_filters( 'the_modified_author', $last_user ? $last_user->display_name : '' );
Note: See TracChangeset for help on using the changeset viewer.