kollapsminoriteten/wp-includes/version.php

60 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2019-11-02 10:38:58 +01:00
<?php
/**
* WordPress Version
*
* Contains version information for the current WordPress release.
*
* @package WordPress
2021-07-23 11:58:50 +02:00
* @since 1.2.0
2019-11-02 10:38:58 +01:00
*/
/**
2020-05-06 17:23:38 +02:00
* The WordPress version string.
2019-11-02 10:38:58 +01:00
*
2022-04-02 10:26:41 +02:00
* Holds the current version number for WordPress core. Used to bust caches
* and to enable development mode for scripts when running from the /src directory.
*
2019-11-02 10:38:58 +01:00
* @global string $wp_version
*/
2026-03-31 11:30:59 +02:00
$wp_version = '6.9.4';
2019-11-02 10:38:58 +01:00
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
*
* @global int $wp_db_version
*/
2025-12-12 13:15:55 +01:00
$wp_db_version = 60717;
2019-11-02 10:38:58 +01:00
/**
2020-05-06 17:23:38 +02:00
* Holds the TinyMCE version.
2019-11-02 10:38:58 +01:00
*
* @global string $tinymce_version
*/
2025-07-27 19:58:08 +02:00
$tinymce_version = '49110-20250317';
2019-11-02 10:38:58 +01:00
/**
2025-12-12 13:15:55 +01:00
* Holds the minimum required PHP version.
2019-11-02 10:38:58 +01:00
*
* @global string $required_php_version
*/
2025-02-28 08:42:11 +01:00
$required_php_version = '7.2.24';
2019-11-02 10:38:58 +01:00
2025-04-25 12:30:07 +02:00
/**
* Holds the names of required PHP extensions.
*
* @global string[] $required_php_extensions
*/
$required_php_extensions = array(
'json',
'hash',
);
2019-11-02 10:38:58 +01:00
/**
2025-12-12 13:15:55 +01:00
* Holds the minimum required MySQL version.
2019-11-02 10:38:58 +01:00
*
* @global string $required_mysql_version
*/
2024-04-17 11:32:24 +02:00
$required_mysql_version = '5.5.5';
2019-11-15 22:59:44 +01:00
$wp_local_package = 'sv_SE';