Ticket #9681: 9681.3.diff
File 9681.3.diff, 863 bytes (added by , 9 years ago) |
---|
-
src/wp-includes/post-template.php
1648 1648 elseif ( wp_is_post_autosave( $revision ) ) 1649 1649 $revision_date_author = sprintf( $autosavef, $revision_date_author ); 1650 1650 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 ); 1652 1661 } 1653 1662 1654 1663 /**