Changeset 56241 for trunk/src/wp-load.php
- Timestamp:
- 07/16/2023 12:14:47 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-load.php
r56006 r56241 60 60 61 61 define( 'WPINC', 'wp-includes' ); 62 require_once ABSPATH . WPINC . '/version.php'; 63 require_once ABSPATH . WPINC . '/compat.php'; 62 64 require_once ABSPATH . WPINC . '/load.php'; 65 66 // Check for the required PHP version and for the MySQL extension or a database drop-in. 67 wp_check_php_mysql_versions(); 63 68 64 69 // Standardize $_SERVER variables across setups. 65 70 wp_fix_server_vars(); 66 71 67 require_once ABSPATH . WPINC . '/compat.php';72 define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); 68 73 require_once ABSPATH . WPINC . '/functions.php'; 69 74 … … 76 81 } 77 82 78 define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );79 require_once ABSPATH . WPINC . '/version.php';80 81 wp_check_php_mysql_versions();82 83 wp_load_translations_early(); 83 84
Note: See TracChangeset
for help on using the changeset viewer.