Changeset 46232 for trunk/src/wp-includes/link-template.php
- Timestamp:
- 09/21/2019 05:40:58 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r45932 r46232 3998 3998 * @since 4.2.0 3999 3999 * 4000 * @param mixed $id_or_email The Gravatar to retrieve. Accepts a user _id, gravatar md5 hash,4001 * 4000 * @param mixed $id_or_email The Gravatar to retrieve. Accepts a user ID, Gravatar MD5 hash, 4001 * user email, WP_User object, WP_Post object, or WP_Comment object. 4002 4002 * @param array $args { 4003 4003 * Optional. Arguments to return instead of the default arguments. … … 4021 4021 * @type string $extra_attr HTML attributes to insert in the IMG element. Is not sanitized. Default empty. 4022 4022 * } 4023 * @return array $processed_args{4023 * @return array { 4024 4024 * Along with the arguments passed in `$args`, this will contain a couple of extra arguments. 4025 4025 * … … 4102 4102 * @since 4.2.0 4103 4103 * 4104 * @param array 4105 * @param mixed $id_or_email The Gravatar to retrieve. Accepts a user_id, gravatar md5 hash,4106 * 4104 * @param array $args Arguments passed to get_avatar_data(), after processing. 4105 * @param mixed $id_or_email The Gravatar to retrieve. Accepts a user ID, Gravatar MD5 hash, 4106 * user email, WP_User object, WP_Post object, or WP_Comment object. 4107 4107 */ 4108 4108 $args = apply_filters( 'pre_get_avatar_data', $args, $id_or_email ); … … 4194 4194 * 4195 4195 * @param string $url The URL of the avatar. 4196 * @param mixed $id_or_email The Gravatar to retrieve. Accepts a user _id, gravatar md5 hash,4196 * @param mixed $id_or_email The Gravatar to retrieve. Accepts a user ID, Gravatar MD5 hash, 4197 4197 * user email, WP_User object, WP_Post object, or WP_Comment object. 4198 4198 * @param array $args Arguments passed to get_avatar_data(), after processing. … … 4205 4205 * @since 4.2.0 4206 4206 * 4207 * @param array 4208 * @param mixed $id_or_email The Gravatar to retrieve. Accepts a user_id, gravatar md5 hash,4209 * 4207 * @param array $args Arguments passed to get_avatar_data(), after processing. 4208 * @param mixed $id_or_email The Gravatar to retrieve. Accepts a user ID, Gravatar MD5 hash, 4209 * user email, WP_User object, WP_Post object, or WP_Comment object. 4210 4210 */ 4211 4211 return apply_filters( 'get_avatar_data', $args, $id_or_email );
Note: See TracChangeset
for help on using the changeset viewer.