Make WordPress Core

Ticket #9681: 9681.3.diff

File 9681.3.diff, 863 bytes (added by helen, 9 years ago)
  • src/wp-includes/post-template.php

     
    16481648        elseif ( wp_is_post_autosave( $revision ) )
    16491649                $revision_date_author = sprintf( $autosavef, $revision_date_author );
    16501650
    1651         return $revision_date_author;
     1651        /**
     1652         * Filter the formatted author and date for a revision.
     1653         *
     1654         * @since 4.4.0
     1655         *
     1656         * @param string  $revision_date_author The formatted string.
     1657         * @param WP_Post $revision             The revision object.
     1658         * @param bool    $link                 Whether to link to the revisions page, as passed into `wp_post_revision_title_expanded()`.
     1659         */
     1660        return apply_filters( 'wp_post_revision_title_expanded', $revision_date_author, $revision, $link );
    16521661}
    16531662
    16541663/**