Changeset 34842
- Timestamp:
- 10/06/2015 12:58:17 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-template.php
r34768 r34842 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 1659 * wp_post_revision_title_expanded(). 1660 */ 1661 return apply_filters( 'wp_post_revision_title_expanded', $revision_date_author, $revision, $link ); 1652 1662 } 1653 1663
Note: See TracChangeset
for help on using the changeset viewer.