author | ymh <ymh.work@gmail.com> |
Mon, 08 Sep 2025 19:44:41 +0200 | |
changeset 23 | 417f20492bf7 |
parent 22 | 8c2e4d02f4ef |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
9 | 3 |
* WordPress Version |
4 |
* |
|
5 |
* Contains version information for the current WordPress release. |
|
6 |
* |
|
7 |
* @package WordPress |
|
18 | 8 |
* @since 1.2.0 |
9 | 9 |
*/ |
10 |
||
11 |
/** |
|
16 | 12 |
* The WordPress version string. |
0 | 13 |
* |
19 | 14 |
* Holds the current version number for WordPress core. Used to bust caches |
15 |
* and to enable development mode for scripts when running from the /src directory. |
|
16 |
* |
|
0 | 17 |
* @global string $wp_version |
18 |
*/ |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
19 |
$wp_version = '6.8.2'; |
0 | 20 |
|
21 |
/** |
|
22 |
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. |
|
23 |
* |
|
24 |
* @global int $wp_db_version |
|
25 |
*/ |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
26 |
$wp_db_version = 60421; |
0 | 27 |
|
28 |
/** |
|
16 | 29 |
* Holds the TinyMCE version. |
0 | 30 |
* |
31 |
* @global string $tinymce_version |
|
32 |
*/ |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
33 |
$tinymce_version = '49110-20250317'; |
0 | 34 |
|
35 |
/** |
|
16 | 36 |
* Holds the required PHP version. |
0 | 37 |
* |
38 |
* @global string $required_php_version |
|
39 |
*/ |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
40 |
$required_php_version = '7.2.24'; |
0 | 41 |
|
42 |
/** |
|
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
43 |
* Holds the names of required PHP extensions. |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
44 |
* |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
45 |
* @global string[] $required_php_extensions |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
46 |
*/ |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
47 |
$required_php_extensions = array( |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
48 |
'json', |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
49 |
'hash', |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
50 |
); |
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
51 |
|
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
52 |
/** |
16 | 53 |
* Holds the required MySQL version. |
0 | 54 |
* |
55 |
* @global string $required_mysql_version |
|
56 |
*/ |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
57 |
$required_mysql_version = '5.5.5'; |