Various inline documentation syntax fixes in wp-includes/link-template.php.
See #31888. git-svn-id: https://develop.svn.wordpress.org/trunk@32042 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
1300ff854a
commit
f372dd828e
@ -3403,12 +3403,11 @@ function the_shortlink( $text = '', $title = '', $before = '', $after = '' ) {
|
||||
* @type bool $force_default Whether to always show the default image, never the Gravatar. Default false.
|
||||
* @type string $rating What rating to display avatars up to. Accepts 'G', 'PG', 'R', 'X', and are
|
||||
* judged in that order. Default is the value of the 'avatar_rating' option.
|
||||
* @type string $scheme URL scheme to use. See {@see set_url_scheme()} for accepted values.
|
||||
* @type string $scheme URL scheme to use. See set_url_scheme() for accepted values.
|
||||
* Default null.
|
||||
* @type array $processed_args When the function returns, the value will be the processed/sanitized $args
|
||||
* plus a "found_avatar" guess. Pass as a reference. Default null.
|
||||
* }
|
||||
*
|
||||
* @return false|string The URL of the avatar we found, or false if we couldn't find an avatar.
|
||||
*/
|
||||
function get_avatar_url( $id_or_email, $args = null ) {
|
||||
@ -3438,15 +3437,14 @@ function get_avatar_url( $id_or_email, $args = null ) {
|
||||
* @type bool $force_default Whether to always show the default image, never the Gravatar. Default false.
|
||||
* @type string $rating What rating to display avatars up to. Accepts 'G', 'PG', 'R', 'X', and are
|
||||
* judged in that order. Default is the value of the 'avatar_rating' option.
|
||||
* @type string $scheme URL scheme to use. See {@see set_url_scheme()} for accepted values.
|
||||
* @type string $scheme URL scheme to use. See set_url_scheme() for accepted values.
|
||||
* Default null.
|
||||
* @type array $processed_args When the function returns, the value will be the processed/sanitized $args
|
||||
* plus a "found_avatar" guess. Pass as a reference. Default null.
|
||||
* @type string $extra_attr HTML attributes to insert in the IMG element. Is not sanitized. Default empty.
|
||||
* }
|
||||
*
|
||||
* @return array $processed_args {
|
||||
* Along with the arguments passed in $args, this will contain a couple of extra arguments.
|
||||
* Along with the arguments passed in `$args`, this will contain a couple of extra arguments.
|
||||
*
|
||||
* @type bool $found_avatar True if we were able to find an avatar for this user,
|
||||
* false or not set if we couldn't.
|
||||
@ -3518,8 +3516,8 @@ function get_avatar_data( $id_or_email, $args = null ) {
|
||||
* Filter whether to retrieve the avatar URL early.
|
||||
*
|
||||
* Passing a non-null value in the 'url' member of the return array will
|
||||
* effectively short circuit {@see get_avatar_data()}, passing the value
|
||||
* through the 'get_avatar_data' filter and returning early.
|
||||
* effectively short circuit get_avatar_data(), passing the value through
|
||||
* the {@see 'get_avatar_data'} filter and returning early.
|
||||
*
|
||||
* @since 4.2.0
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user