Changeset 48590 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 07/23/2020 09:09:04 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r48121 r48590 1490 1490 * @since 1.0.0 1491 1491 * 1492 * @param int|WP_Comment 1493 * @param string 1492 * @param int|WP_Comment $comment_id Comment ID or WP_Comment object. 1493 * @param string $deprecated Not used 1494 1494 * @return bool True on completion. False if no email addresses were specified. 1495 1495 */ … … 2583 2583 * @since 4.2.0 Optional `$args` parameter added. 2584 2584 * 2585 * @param mixed $id_or_email The Gravatar to retrieve. Accepts a user_id, gravatar md5 hash,2586 * user email, WP_User object, WP_Post object, or WP_Comment object.2587 * @param int $size Optional. Height and width of the avatar image file in pixels. Default 96.2588 * @param string $default Optional. URL for the default image or a default type. Accepts '404'2589 * (return a 404 instead of a default image), 'retro' (8bit), 'monsterid'2590 * (monster), 'wavatar' (cartoon face), 'indenticon' (the "quilt"),2591 * 'mystery', 'mm', or 'mysteryman' (The Oyster Man), 'blank' (transparent GIF),2592 * or 'gravatar_default' (the Gravatar logo). Default is the value of the2593 * 'avatar_default' option, with a fallback of 'mystery'.2594 * @param string $alt Optional. Alternative text to use in <img>tag. Default empty.2595 * @param array $args 2585 * @param mixed $id_or_email The Gravatar to retrieve. Accepts a user_id, gravatar md5 hash, 2586 * user email, WP_User object, WP_Post object, or WP_Comment object. 2587 * @param int $size Optional. Height and width of the avatar image file in pixels. Default 96. 2588 * @param string $default Optional. URL for the default image or a default type. Accepts '404' 2589 * (return a 404 instead of a default image), 'retro' (8bit), 'monsterid' 2590 * (monster), 'wavatar' (cartoon face), 'indenticon' (the "quilt"), 2591 * 'mystery', 'mm', or 'mysteryman' (The Oyster Man), 'blank' (transparent GIF), 2592 * or 'gravatar_default' (the Gravatar logo). Default is the value of the 2593 * 'avatar_default' option, with a fallback of 'mystery'. 2594 * @param string $alt Optional. Alternative text to use in img tag. Default empty. 2595 * @param array $args { 2596 2596 * Optional. Extra arguments to retrieve the avatar. 2597 2597 * … … 2603 2603 * @type string $scheme URL scheme to use. See set_url_scheme() for accepted values. 2604 2604 * Default null. 2605 * @type array|string $class Array or string of additional classes to add to the <img>element.2605 * @type array|string $class Array or string of additional classes to add to the img element. 2606 2606 * Default null. 2607 2607 * @type bool $force_display Whether to always show the avatar - ignores the show_avatars option.
Note: See TracChangeset
for help on using the changeset viewer.