Commit ee88db289f for wordpress.org

commit ee88db289fbb3294b63e8f16035d9f93b10eb230
Author: Weston Ruter <weston@xwp.co>
Date:   Mon Feb 2 04:42:40 2026 +0000

    Docs: Correct type of `WP_Theme::$cache_expiration` from `bool` to `int`.

    Follow-up to [20029].

    Props marian1, mukesh27.
    See #20103, #64224.
    Fixes #64583.

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


    git-svn-id: http://core.svn.wordpress.org/trunk@60885 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-includes/class-wp-theme.php b/wp-includes/class-wp-theme.php
index a6966351f1..5034c5ed6d 100644
--- a/wp-includes/class-wp-theme.php
+++ b/wp-includes/class-wp-theme.php
@@ -233,7 +233,7 @@ final class WP_Theme implements ArrayAccess {
 	 * By default the bucket is not cached, so this value is useless.
 	 *
 	 * @since 3.4.0
-	 * @var bool
+	 * @var int
 	 */
 	private static $cache_expiration = 1800;

diff --git a/wp-includes/version.php b/wp-includes/version.php
index 2b86fee375..4a1f515f31 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61573';
+$wp_version = '7.0-alpha-61574';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.