Changeset 48576 for trunk/src/wp-includes/author-template.php
- Timestamp:
- 07/23/2020 07:37:57 AM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/author-template.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/author-template.php
r48200 r48576 16 16 * @since 1.5.0 17 17 * 18 * @global object $authordata The current author's DB object.18 * @global WP_User $authordata The current author's data. 19 19 * 20 20 * @param string $deprecated Deprecated. … … 33 33 * @since 2.9.0 34 34 * 35 * @param string $authordata->display_name The author's display name.35 * @param string|null $display_name The author's display name. 36 36 */ 37 37 return apply_filters( 'the_author', is_object( $authordata ) ? $authordata->display_name : null ); … … 100 100 * @since 2.8.0 101 101 * 102 * @param string $ last_user->display_name The author's display name.102 * @param string $display_name The author's display name. 103 103 */ 104 104 return apply_filters( 'the_modified_author', $last_user->display_name ); … … 153 153 * @since 2.8.0 154 154 * 155 * @global object $authordata The current author's DB object.155 * @global WP_User $authordata The current author's data. 156 156 * 157 157 * @param string $field Optional. The user field to retrieve. Default empty. … … 288 288 * @since 4.4.0 289 289 * 290 * @global object $authordata The current author's DB object.290 * @global WP_User $authordata The current author's data. 291 291 * 292 292 * @return string An HTML link to the author page, or an empty string if $authordata isn't defined.
Note: See TracChangeset
for help on using the changeset viewer.