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

Follow-up to [25625].

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


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

View File

@@ -30,7 +30,7 @@ get_header(); ?>
*
* @since Twenty Eleven 1.0
*
* @param string The default category description HTML.
* @param string $html The default category description HTML.
*/
echo apply_filters( 'category_archive_meta', '<div class="category-archive-meta">' . $category_description . '</div>' );
}

View File

@@ -188,7 +188,7 @@ if ( ! function_exists( 'twentyeleven_setup' ) ) :
*
* @since Twenty Eleven 1.0
*
* @param int The default header image width in pixels. Default 1000.
* @param int $width The default header image width in pixels. Default 1000.
*/
'width' => apply_filters( 'twentyeleven_header_image_width', 1000 ),
/**
@@ -196,7 +196,7 @@ if ( ! function_exists( 'twentyeleven_setup' ) ) :
*
* @since Twenty Eleven 1.0
*
* @param int The default header image height in pixels. Default 288.
* @param int $height The default header image height in pixels. Default 288.
*/
'height' => apply_filters( 'twentyeleven_header_image_height', 288 ),
// Support flexible heights.

View File

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