Changeset 56241 for trunk/src/index.php
- Timestamp:
- 07/16/2023 12:14:47 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/index.php
r54650 r56241 22 22 23 23 define( 'WPINC', 'wp-includes' ); 24 require_once ABSPATH . WPINC . '/version.php'; 25 require_once ABSPATH . WPINC . '/compat.php'; 24 26 require_once ABSPATH . WPINC . '/load.php'; 27 28 // Check for the required PHP version and for the MySQL extension or a database drop-in. 29 wp_check_php_mysql_versions(); 25 30 26 31 // Standardize $_SERVER variables across setups. 27 32 wp_fix_server_vars(); 28 33 34 define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); 29 35 require_once ABSPATH . WPINC . '/functions.php'; 30 define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );31 require_once ABSPATH . WPINC . '/version.php';32 36 33 wp_check_php_mysql_versions();34 37 wp_load_translations_early(); 35 38
Note: See TracChangeset
for help on using the changeset viewer.