From f9f9ffb0e12002b67c4941ddcf8337e499d0f74a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 27 Nov 2025 23:14:24 +0000 Subject: [PATCH] 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 --- wp-content/themes/twentyeleven/category.php | 2 +- wp-content/themes/twentyeleven/functions.php | 4 ++-- wp-includes/version.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-content/themes/twentyeleven/category.php b/wp-content/themes/twentyeleven/category.php index e9bc2e7052..7e47355859 100644 --- a/wp-content/themes/twentyeleven/category.php +++ b/wp-content/themes/twentyeleven/category.php @@ -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', '
' . $category_description . '
' ); } diff --git a/wp-content/themes/twentyeleven/functions.php b/wp-content/themes/twentyeleven/functions.php index c52da6e1f1..cc7821aa8f 100644 --- a/wp-content/themes/twentyeleven/functions.php +++ b/wp-content/themes/twentyeleven/functions.php @@ -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. diff --git a/wp-includes/version.php b/wp-includes/version.php index e45d5147ea..92c0aa1ec2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.