Various inline documentation syntax fixes in wp-includes/link-template.php.

See #31888.

Built from https://develop.svn.wordpress.org/trunk@32042


git-svn-id: http://core.svn.wordpress.org/trunk@32021 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-04-05 16:04:28 +00:00
parent 5a70c1a9dc
commit d79ecd8bba
2 changed files with 13 additions and 15 deletions

View File

@ -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 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 * @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. * 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. * Default null.
* @type array $processed_args When the function returns, the value will be the processed/sanitized $args * @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. * 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. * @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 ) { 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 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 * @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. * 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. * Default null.
* @type array $processed_args When the function returns, the value will be the processed/sanitized $args * @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. * 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. * @type string $extra_attr HTML attributes to insert in the IMG element. Is not sanitized. Default empty.
* } * }
*
* @return array $processed_args { * @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, * @type bool $found_avatar True if we were able to find an avatar for this user,
* false or not set if we couldn't. * 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. * Filter whether to retrieve the avatar URL early.
* *
* Passing a non-null value in the 'url' member of the return array will * Passing a non-null value in the 'url' member of the return array will
* effectively short circuit {@see get_avatar_data()}, passing the value * effectively short circuit get_avatar_data(), passing the value through
* through the 'get_avatar_data' filter and returning early. * the {@see 'get_avatar_data'} filter and returning early.
* *
* @since 4.2.0 * @since 4.2.0
* *

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.2-beta4-32041'; $wp_version = '4.2-beta4-32042';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.