Twenty Ten: Add missing variable names to some @param tags.

Follow-up to [25627].

Props huzaifaalmesbah.
See #64224.
Built from https://develop.svn.wordpress.org/trunk@61314


git-svn-id: http://core.svn.wordpress.org/trunk@60626 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov
2025-11-27 23:12:27 +00:00
parent 45816337ec
commit 81f18bdbfe
3 changed files with 4 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ if ( get_the_author_meta( 'description' ) ) :
*
* @since Twenty Ten 1.0
*
* @param int The height and width avatar dimensions in pixels. Default 60.
* @param int $size The height and width avatar dimensions in pixels. Default 60.
*/
$author_bio_avatar_size = apply_filters( 'twentyten_author_bio_avatar_size', 60 );
echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );

View File

@@ -127,7 +127,7 @@ if ( have_posts() ) {
*
* @since Twenty Ten 1.0
*
* @param int The default attachment width in pixels. Default 900.
* @param int $width The default attachment width in pixels. Default 900.
*/
$attachment_width = apply_filters( 'twentyten_attachment_size', 900 );
/**
@@ -135,7 +135,7 @@ if ( have_posts() ) {
*
* @since Twenty Ten 1.0
*
* @param int The default attachment height in pixels. Default 900.
* @param int $height The default attachment height in pixels. Default 900.
*/
$attachment_height = apply_filters( 'twentyten_attachment_height', 900 );
// Filterable image width with, essentially, no limit for image height.

View File

@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '7.0-alpha-61313';
$wp_version = '7.0-alpha-61314';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.