[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Used to set up and fix common variables and include 4 * the WordPress procedural and class library. 5 * 6 * Allows for some configuration in wp-config.php (see default-constants.php) 7 * 8 * @package WordPress 9 */ 10 11 /** 12 * Stores the location of the WordPress directory of functions, classes, and core content. 13 * 14 * @since 1.0.0 15 */ 16 define( 'WPINC', 'wp-includes' ); 17 18 /** 19 * Version information for the current WordPress release. 20 * 21 * These can't be directly globalized in version.php. When updating, 22 * include version.php from another installation and don't override 23 * these values if already set. 24 * 25 * @global string $wp_version The WordPress version string. 26 * @global int $wp_db_version WordPress database version. 27 * @global string $tinymce_version TinyMCE version. 28 * @global string $required_php_version The required PHP version string. 29 * @global string[] $required_php_extensions The names of required PHP extensions. 30 * @global string $required_mysql_version The required MySQL version string. 31 * @global string $wp_local_package Locale code of the package. 32 */ 33 global $wp_version, $wp_db_version, $tinymce_version, $required_php_version, $required_php_extensions, $required_mysql_version, $wp_local_package; 34 require ABSPATH . WPINC . '/version.php'; 35 require ABSPATH . WPINC . '/compat.php'; 36 require ABSPATH . WPINC . '/load.php'; 37 38 // Check for the required PHP version and for the MySQL extension or a database drop-in. 39 wp_check_php_mysql_versions(); 40 41 // Include files required for initialization. 42 require ABSPATH . WPINC . '/class-wp-paused-extensions-storage.php'; 43 require ABSPATH . WPINC . '/class-wp-exception.php'; 44 require ABSPATH . WPINC . '/class-wp-fatal-error-handler.php'; 45 require ABSPATH . WPINC . '/class-wp-recovery-mode-cookie-service.php'; 46 require ABSPATH . WPINC . '/class-wp-recovery-mode-key-service.php'; 47 require ABSPATH . WPINC . '/class-wp-recovery-mode-link-service.php'; 48 require ABSPATH . WPINC . '/class-wp-recovery-mode-email-service.php'; 49 require ABSPATH . WPINC . '/class-wp-recovery-mode.php'; 50 require ABSPATH . WPINC . '/error-protection.php'; 51 require ABSPATH . WPINC . '/default-constants.php'; 52 require_once ABSPATH . WPINC . '/plugin.php'; 53 54 /** 55 * If not already configured, `$blog_id` will default to 1 in a single site 56 * configuration. In multisite, it will be overridden by default in ms-settings.php. 57 * 58 * @since 2.0.0 59 * 60 * @global int $blog_id 61 */ 62 global $blog_id; 63 64 // Set initial default constants including WP_MEMORY_LIMIT, WP_MAX_MEMORY_LIMIT, WP_DEBUG, SCRIPT_DEBUG, WP_CONTENT_DIR and WP_CACHE. 65 wp_initial_constants(); 66 67 // Register the shutdown handler for fatal errors as soon as possible. 68 wp_register_fatal_error_handler(); 69 70 // WordPress calculates offsets from UTC. 71 // phpcs:ignore WordPress.DateTime.RestrictedFunctions.timezone_change_date_default_timezone_set 72 date_default_timezone_set( 'UTC' ); 73 74 // Standardize $_SERVER variables across setups. 75 wp_fix_server_vars(); 76 77 // Check if the site is in maintenance mode. 78 wp_maintenance(); 79 80 // Start loading timer. 81 timer_start(); 82 83 // Check if WP_DEBUG mode is enabled. 84 wp_debug_mode(); 85 86 /** 87 * Filters whether to enable loading of the advanced-cache.php drop-in. 88 * 89 * This filter runs before it can be used by plugins. It is designed for non-web 90 * run-times. If false is returned, advanced-cache.php will never be loaded. 91 * 92 * @since 4.6.0 93 * 94 * @param bool $enable_advanced_cache Whether to enable loading advanced-cache.php (if present). 95 * Default true. 96 */ 97 if ( WP_CACHE && apply_filters( 'enable_loading_advanced_cache_dropin', true ) && file_exists( WP_CONTENT_DIR . '/advanced-cache.php' ) ) { 98 // For an advanced caching plugin to use. Uses a static drop-in because you would only want one. 99 include WP_CONTENT_DIR . '/advanced-cache.php'; 100 101 // Re-initialize any hooks added manually by advanced-cache.php. 102 if ( $wp_filter ) { 103 $wp_filter = WP_Hook::build_preinitialized_hooks( $wp_filter ); 104 } 105 } 106 107 // Define WP_LANG_DIR if not set. 108 wp_set_lang_dir(); 109 110 // Load early WordPress files. 111 require ABSPATH . WPINC . '/class-wp-list-util.php'; 112 require ABSPATH . WPINC . '/class-wp-token-map.php'; 113 require ABSPATH . WPINC . '/formatting.php'; 114 require ABSPATH . WPINC . '/meta.php'; 115 require ABSPATH . WPINC . '/functions.php'; 116 require ABSPATH . WPINC . '/class-wp-meta-query.php'; 117 require ABSPATH . WPINC . '/class-wp-matchesmapregex.php'; 118 require ABSPATH . WPINC . '/class-wp.php'; 119 require ABSPATH . WPINC . '/class-wp-error.php'; 120 require ABSPATH . WPINC . '/pomo/mo.php'; 121 require ABSPATH . WPINC . '/l10n/class-wp-translation-controller.php'; 122 require ABSPATH . WPINC . '/l10n/class-wp-translations.php'; 123 require ABSPATH . WPINC . '/l10n/class-wp-translation-file.php'; 124 require ABSPATH . WPINC . '/l10n/class-wp-translation-file-mo.php'; 125 require ABSPATH . WPINC . '/l10n/class-wp-translation-file-php.php'; 126 127 /** 128 * @since 0.71 129 * 130 * @global wpdb $wpdb WordPress database abstraction object. 131 */ 132 global $wpdb; 133 // Include the wpdb class and, if present, a db.php database drop-in. 134 require_wp_db(); 135 136 /** 137 * @since 3.3.0 138 * 139 * @global string $table_prefix The database table prefix. 140 */ 141 $GLOBALS['table_prefix'] = $table_prefix; 142 143 // Set the database table prefix and the format specifiers for database table columns. 144 wp_set_wpdb_vars(); 145 146 // Start the WordPress object cache, or an external object cache if the drop-in is present. 147 wp_start_object_cache(); 148 149 // Attach the default filters. 150 require ABSPATH . WPINC . '/default-filters.php'; 151 152 // Initialize multisite if enabled. 153 if ( is_multisite() ) { 154 require ABSPATH . WPINC . '/class-wp-site-query.php'; 155 require ABSPATH . WPINC . '/class-wp-network-query.php'; 156 require ABSPATH . WPINC . '/ms-blogs.php'; 157 require ABSPATH . WPINC . '/ms-settings.php'; 158 } elseif ( ! defined( 'MULTISITE' ) ) { 159 define( 'MULTISITE', false ); 160 } 161 162 register_shutdown_function( 'shutdown_action_hook' ); 163 164 // Stop most of WordPress from being loaded if SHORTINIT is enabled. 165 if ( SHORTINIT ) { 166 return false; 167 } 168 169 // Load the L10n library. 170 require_once ABSPATH . WPINC . '/l10n.php'; 171 require_once ABSPATH . WPINC . '/class-wp-textdomain-registry.php'; 172 require_once ABSPATH . WPINC . '/class-wp-locale.php'; 173 require_once ABSPATH . WPINC . '/class-wp-locale-switcher.php'; 174 175 // Run the installer if WordPress is not installed. 176 wp_not_installed(); 177 178 // Load most of WordPress. 179 require ABSPATH . WPINC . '/class-wp-walker.php'; 180 require ABSPATH . WPINC . '/class-wp-ajax-response.php'; 181 require ABSPATH . WPINC . '/capabilities.php'; 182 require ABSPATH . WPINC . '/class-wp-roles.php'; 183 require ABSPATH . WPINC . '/class-wp-role.php'; 184 require ABSPATH . WPINC . '/class-wp-user.php'; 185 require ABSPATH . WPINC . '/class-wp-query.php'; 186 require ABSPATH . WPINC . '/query.php'; 187 require ABSPATH . WPINC . '/class-wp-date-query.php'; 188 require ABSPATH . WPINC . '/theme.php'; 189 require ABSPATH . WPINC . '/class-wp-theme.php'; 190 require ABSPATH . WPINC . '/class-wp-theme-json-schema.php'; 191 require ABSPATH . WPINC . '/class-wp-theme-json-data.php'; 192 require ABSPATH . WPINC . '/class-wp-theme-json.php'; 193 require ABSPATH . WPINC . '/class-wp-theme-json-resolver.php'; 194 require ABSPATH . WPINC . '/class-wp-duotone.php'; 195 require ABSPATH . WPINC . '/global-styles-and-settings.php'; 196 require ABSPATH . WPINC . '/class-wp-block-template.php'; 197 require ABSPATH . WPINC . '/class-wp-block-templates-registry.php'; 198 require ABSPATH . WPINC . '/block-template-utils.php'; 199 require ABSPATH . WPINC . '/block-template.php'; 200 require ABSPATH . WPINC . '/theme-templates.php'; 201 require ABSPATH . WPINC . '/theme-previews.php'; 202 require ABSPATH . WPINC . '/template.php'; 203 require ABSPATH . WPINC . '/https-detection.php'; 204 require ABSPATH . WPINC . '/https-migration.php'; 205 require ABSPATH . WPINC . '/class-wp-user-request.php'; 206 require ABSPATH . WPINC . '/user.php'; 207 require ABSPATH . WPINC . '/class-wp-user-query.php'; 208 require ABSPATH . WPINC . '/class-wp-session-tokens.php'; 209 require ABSPATH . WPINC . '/class-wp-user-meta-session-tokens.php'; 210 require ABSPATH . WPINC . '/general-template.php'; 211 require ABSPATH . WPINC . '/link-template.php'; 212 require ABSPATH . WPINC . '/author-template.php'; 213 require ABSPATH . WPINC . '/robots-template.php'; 214 require ABSPATH . WPINC . '/post.php'; 215 require ABSPATH . WPINC . '/class-walker-page.php'; 216 require ABSPATH . WPINC . '/class-walker-page-dropdown.php'; 217 require ABSPATH . WPINC . '/class-wp-post-type.php'; 218 require ABSPATH . WPINC . '/class-wp-post.php'; 219 require ABSPATH . WPINC . '/post-template.php'; 220 require ABSPATH . WPINC . '/revision.php'; 221 require ABSPATH . WPINC . '/post-formats.php'; 222 require ABSPATH . WPINC . '/post-thumbnail-template.php'; 223 require ABSPATH . WPINC . '/category.php'; 224 require ABSPATH . WPINC . '/class-walker-category.php'; 225 require ABSPATH . WPINC . '/class-walker-category-dropdown.php'; 226 require ABSPATH . WPINC . '/category-template.php'; 227 require ABSPATH . WPINC . '/comment.php'; 228 require ABSPATH . WPINC . '/class-wp-comment.php'; 229 require ABSPATH . WPINC . '/class-wp-comment-query.php'; 230 require ABSPATH . WPINC . '/class-walker-comment.php'; 231 require ABSPATH . WPINC . '/comment-template.php'; 232 require ABSPATH . WPINC . '/rewrite.php'; 233 require ABSPATH . WPINC . '/class-wp-rewrite.php'; 234 require ABSPATH . WPINC . '/feed.php'; 235 require ABSPATH . WPINC . '/bookmark.php'; 236 require ABSPATH . WPINC . '/bookmark-template.php'; 237 require ABSPATH . WPINC . '/kses.php'; 238 require ABSPATH . WPINC . '/cron.php'; 239 require ABSPATH . WPINC . '/deprecated.php'; 240 require ABSPATH . WPINC . '/script-loader.php'; 241 require ABSPATH . WPINC . '/taxonomy.php'; 242 require ABSPATH . WPINC . '/class-wp-taxonomy.php'; 243 require ABSPATH . WPINC . '/class-wp-term.php'; 244 require ABSPATH . WPINC . '/class-wp-term-query.php'; 245 require ABSPATH . WPINC . '/class-wp-tax-query.php'; 246 require ABSPATH . WPINC . '/update.php'; 247 require ABSPATH . WPINC . '/canonical.php'; 248 require ABSPATH . WPINC . '/shortcodes.php'; 249 require ABSPATH . WPINC . '/embed.php'; 250 require ABSPATH . WPINC . '/class-wp-embed.php'; 251 require ABSPATH . WPINC . '/class-wp-oembed.php'; 252 require ABSPATH . WPINC . '/class-wp-oembed-controller.php'; 253 require ABSPATH . WPINC . '/media.php'; 254 require ABSPATH . WPINC . '/http.php'; 255 require ABSPATH . WPINC . '/html-api/html5-named-character-references.php'; 256 require ABSPATH . WPINC . '/html-api/class-wp-html-attribute-token.php'; 257 require ABSPATH . WPINC . '/html-api/class-wp-html-span.php'; 258 require ABSPATH . WPINC . '/html-api/class-wp-html-doctype-info.php'; 259 require ABSPATH . WPINC . '/html-api/class-wp-html-text-replacement.php'; 260 require ABSPATH . WPINC . '/html-api/class-wp-html-decoder.php'; 261 require ABSPATH . WPINC . '/html-api/class-wp-html-tag-processor.php'; 262 require ABSPATH . WPINC . '/html-api/class-wp-html-unsupported-exception.php'; 263 require ABSPATH . WPINC . '/html-api/class-wp-html-active-formatting-elements.php'; 264 require ABSPATH . WPINC . '/html-api/class-wp-html-open-elements.php'; 265 require ABSPATH . WPINC . '/html-api/class-wp-html-token.php'; 266 require ABSPATH . WPINC . '/html-api/class-wp-html-stack-event.php'; 267 require ABSPATH . WPINC . '/html-api/class-wp-html-processor-state.php'; 268 require ABSPATH . WPINC . '/html-api/class-wp-html-processor.php'; 269 require ABSPATH . WPINC . '/class-wp-http.php'; 270 require ABSPATH . WPINC . '/class-wp-http-streams.php'; 271 require ABSPATH . WPINC . '/class-wp-http-curl.php'; 272 require ABSPATH . WPINC . '/class-wp-http-proxy.php'; 273 require ABSPATH . WPINC . '/class-wp-http-cookie.php'; 274 require ABSPATH . WPINC . '/class-wp-http-encoding.php'; 275 require ABSPATH . WPINC . '/class-wp-http-response.php'; 276 require ABSPATH . WPINC . '/class-wp-http-requests-response.php'; 277 require ABSPATH . WPINC . '/class-wp-http-requests-hooks.php'; 278 require ABSPATH . WPINC . '/widgets.php'; 279 require ABSPATH . WPINC . '/class-wp-widget.php'; 280 require ABSPATH . WPINC . '/class-wp-widget-factory.php'; 281 require ABSPATH . WPINC . '/nav-menu-template.php'; 282 require ABSPATH . WPINC . '/nav-menu.php'; 283 require ABSPATH . WPINC . '/admin-bar.php'; 284 require ABSPATH . WPINC . '/class-wp-application-passwords.php'; 285 require ABSPATH . WPINC . '/rest-api.php'; 286 require ABSPATH . WPINC . '/rest-api/class-wp-rest-server.php'; 287 require ABSPATH . WPINC . '/rest-api/class-wp-rest-response.php'; 288 require ABSPATH . WPINC . '/rest-api/class-wp-rest-request.php'; 289 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-controller.php'; 290 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-posts-controller.php'; 291 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-attachments-controller.php'; 292 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-global-styles-controller.php'; 293 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-post-types-controller.php'; 294 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'; 295 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-revisions-controller.php'; 296 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php'; 297 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-template-revisions-controller.php'; 298 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-autosaves-controller.php'; 299 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php'; 300 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'; 301 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-terms-controller.php'; 302 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-menu-items-controller.php'; 303 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-menus-controller.php'; 304 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-menu-locations-controller.php'; 305 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-users-controller.php'; 306 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-comments-controller.php'; 307 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-search-controller.php'; 308 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-blocks-controller.php'; 309 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-block-types-controller.php'; 310 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-block-renderer-controller.php'; 311 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-settings-controller.php'; 312 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-themes-controller.php'; 313 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-plugins-controller.php'; 314 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-block-directory-controller.php'; 315 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php'; 316 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php'; 317 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-block-patterns-controller.php'; 318 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php'; 319 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-application-passwords-controller.php'; 320 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-site-health-controller.php'; 321 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-sidebars-controller.php'; 322 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-widget-types-controller.php'; 323 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-widgets-controller.php'; 324 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-templates-controller.php'; 325 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-url-details-controller.php'; 326 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php'; 327 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-font-families-controller.php'; 328 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-font-faces-controller.php'; 329 require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-font-collections-controller.php'; 330 require ABSPATH . WPINC . '/rest-api/fields/class-wp-rest-meta-fields.php'; 331 require ABSPATH . WPINC . '/rest-api/fields/class-wp-rest-comment-meta-fields.php'; 332 require ABSPATH . WPINC . '/rest-api/fields/class-wp-rest-post-meta-fields.php'; 333 require ABSPATH . WPINC . '/rest-api/fields/class-wp-rest-term-meta-fields.php'; 334 require ABSPATH . WPINC . '/rest-api/fields/class-wp-rest-user-meta-fields.php'; 335 require ABSPATH . WPINC . '/rest-api/search/class-wp-rest-search-handler.php'; 336 require ABSPATH . WPINC . '/rest-api/search/class-wp-rest-post-search-handler.php'; 337 require ABSPATH . WPINC . '/rest-api/search/class-wp-rest-term-search-handler.php'; 338 require ABSPATH . WPINC . '/rest-api/search/class-wp-rest-post-format-search-handler.php'; 339 require ABSPATH . WPINC . '/sitemaps.php'; 340 require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps.php'; 341 require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps-index.php'; 342 require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps-provider.php'; 343 require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps-registry.php'; 344 require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps-renderer.php'; 345 require ABSPATH . WPINC . '/sitemaps/class-wp-sitemaps-stylesheet.php'; 346 require ABSPATH . WPINC . '/sitemaps/providers/class-wp-sitemaps-posts.php'; 347 require ABSPATH . WPINC . '/sitemaps/providers/class-wp-sitemaps-taxonomies.php'; 348 require ABSPATH . WPINC . '/sitemaps/providers/class-wp-sitemaps-users.php'; 349 require ABSPATH . WPINC . '/class-wp-block-bindings-source.php'; 350 require ABSPATH . WPINC . '/class-wp-block-bindings-registry.php'; 351 require ABSPATH . WPINC . '/class-wp-block-editor-context.php'; 352 require ABSPATH . WPINC . '/class-wp-block-type.php'; 353 require ABSPATH . WPINC . '/class-wp-block-pattern-categories-registry.php'; 354 require ABSPATH . WPINC . '/class-wp-block-patterns-registry.php'; 355 require ABSPATH . WPINC . '/class-wp-block-styles-registry.php'; 356 require ABSPATH . WPINC . '/class-wp-block-type-registry.php'; 357 require ABSPATH . WPINC . '/class-wp-block.php'; 358 require ABSPATH . WPINC . '/class-wp-block-list.php'; 359 require ABSPATH . WPINC . '/class-wp-block-metadata-registry.php'; 360 require ABSPATH . WPINC . '/class-wp-block-parser-block.php'; 361 require ABSPATH . WPINC . '/class-wp-block-parser-frame.php'; 362 require ABSPATH . WPINC . '/class-wp-block-parser.php'; 363 require ABSPATH . WPINC . '/class-wp-classic-to-block-menu-converter.php'; 364 require ABSPATH . WPINC . '/class-wp-navigation-fallback.php'; 365 require ABSPATH . WPINC . '/block-bindings.php'; 366 require ABSPATH . WPINC . '/block-bindings/pattern-overrides.php'; 367 require ABSPATH . WPINC . '/block-bindings/post-meta.php'; 368 require ABSPATH . WPINC . '/blocks.php'; 369 require ABSPATH . WPINC . '/blocks/index.php'; 370 require ABSPATH . WPINC . '/block-editor.php'; 371 require ABSPATH . WPINC . '/block-patterns.php'; 372 require ABSPATH . WPINC . '/class-wp-block-supports.php'; 373 require ABSPATH . WPINC . '/block-supports/utils.php'; 374 require ABSPATH . WPINC . '/block-supports/align.php'; 375 require ABSPATH . WPINC . '/block-supports/custom-classname.php'; 376 require ABSPATH . WPINC . '/block-supports/generated-classname.php'; 377 require ABSPATH . WPINC . '/block-supports/settings.php'; 378 require ABSPATH . WPINC . '/block-supports/elements.php'; 379 require ABSPATH . WPINC . '/block-supports/colors.php'; 380 require ABSPATH . WPINC . '/block-supports/typography.php'; 381 require ABSPATH . WPINC . '/block-supports/border.php'; 382 require ABSPATH . WPINC . '/block-supports/layout.php'; 383 require ABSPATH . WPINC . '/block-supports/position.php'; 384 require ABSPATH . WPINC . '/block-supports/spacing.php'; 385 require ABSPATH . WPINC . '/block-supports/dimensions.php'; 386 require ABSPATH . WPINC . '/block-supports/duotone.php'; 387 require ABSPATH . WPINC . '/block-supports/shadow.php'; 388 require ABSPATH . WPINC . '/block-supports/background.php'; 389 require ABSPATH . WPINC . '/block-supports/block-style-variations.php'; 390 require ABSPATH . WPINC . '/block-supports/aria-label.php'; 391 require ABSPATH . WPINC . '/style-engine.php'; 392 require ABSPATH . WPINC . '/style-engine/class-wp-style-engine.php'; 393 require ABSPATH . WPINC . '/style-engine/class-wp-style-engine-css-declarations.php'; 394 require ABSPATH . WPINC . '/style-engine/class-wp-style-engine-css-rule.php'; 395 require ABSPATH . WPINC . '/style-engine/class-wp-style-engine-css-rules-store.php'; 396 require ABSPATH . WPINC . '/style-engine/class-wp-style-engine-processor.php'; 397 require ABSPATH . WPINC . '/fonts/class-wp-font-face-resolver.php'; 398 require ABSPATH . WPINC . '/fonts/class-wp-font-collection.php'; 399 require ABSPATH . WPINC . '/fonts/class-wp-font-face.php'; 400 require ABSPATH . WPINC . '/fonts/class-wp-font-library.php'; 401 require ABSPATH . WPINC . '/fonts/class-wp-font-utils.php'; 402 require ABSPATH . WPINC . '/fonts.php'; 403 require ABSPATH . WPINC . '/class-wp-script-modules.php'; 404 require ABSPATH . WPINC . '/script-modules.php'; 405 require ABSPATH . WPINC . '/interactivity-api/class-wp-interactivity-api.php'; 406 require ABSPATH . WPINC . '/interactivity-api/class-wp-interactivity-api-directives-processor.php'; 407 require ABSPATH . WPINC . '/interactivity-api/interactivity-api.php'; 408 require ABSPATH . WPINC . '/class-wp-plugin-dependencies.php'; 409 require ABSPATH . WPINC . '/class-wp-url-pattern-prefixer.php'; 410 require ABSPATH . WPINC . '/class-wp-speculation-rules.php'; 411 require ABSPATH . WPINC . '/speculative-loading.php'; 412 413 add_action( 'after_setup_theme', array( wp_script_modules(), 'add_hooks' ) ); 414 add_action( 'after_setup_theme', array( wp_interactivity(), 'add_hooks' ) ); 415 416 /** 417 * @since 3.3.0 418 * 419 * @global WP_Embed $wp_embed WordPress Embed object. 420 */ 421 $GLOBALS['wp_embed'] = new WP_Embed(); 422 423 /** 424 * WordPress Textdomain Registry object. 425 * 426 * Used to support just-in-time translations for manually loaded text domains. 427 * 428 * @since 6.1.0 429 * 430 * @global WP_Textdomain_Registry $wp_textdomain_registry WordPress Textdomain Registry. 431 */ 432 $GLOBALS['wp_textdomain_registry'] = new WP_Textdomain_Registry(); 433 $GLOBALS['wp_textdomain_registry']->init(); 434 435 // Load multisite-specific files. 436 if ( is_multisite() ) { 437 require ABSPATH . WPINC . '/ms-functions.php'; 438 require ABSPATH . WPINC . '/ms-default-filters.php'; 439 require ABSPATH . WPINC . '/ms-deprecated.php'; 440 } 441 442 // Define constants that rely on the API to obtain the default value. 443 // Define must-use plugin directory constants, which may be overridden in the sunrise.php drop-in. 444 wp_plugin_directory_constants(); 445 446 /** 447 * @since 3.9.0 448 * 449 * @global array $wp_plugin_paths 450 */ 451 $GLOBALS['wp_plugin_paths'] = array(); 452 453 // Load must-use plugins. 454 foreach ( wp_get_mu_plugins() as $mu_plugin ) { 455 $_wp_plugin_file = $mu_plugin; 456 include_once $mu_plugin; 457 $mu_plugin = $_wp_plugin_file; // Avoid stomping of the $mu_plugin variable in a plugin. 458 459 /** 460 * Fires once a single must-use plugin has loaded. 461 * 462 * @since 5.1.0 463 * 464 * @param string $mu_plugin Full path to the plugin's main file. 465 */ 466 do_action( 'mu_plugin_loaded', $mu_plugin ); 467 } 468 unset( $mu_plugin, $_wp_plugin_file ); 469 470 // Load network activated plugins. 471 if ( is_multisite() ) { 472 foreach ( wp_get_active_network_plugins() as $network_plugin ) { 473 wp_register_plugin_realpath( $network_plugin ); 474 475 $_wp_plugin_file = $network_plugin; 476 include_once $network_plugin; 477 $network_plugin = $_wp_plugin_file; // Avoid stomping of the $network_plugin variable in a plugin. 478 479 /** 480 * Fires once a single network-activated plugin has loaded. 481 * 482 * @since 5.1.0 483 * 484 * @param string $network_plugin Full path to the plugin's main file. 485 */ 486 do_action( 'network_plugin_loaded', $network_plugin ); 487 } 488 unset( $network_plugin, $_wp_plugin_file ); 489 } 490 491 /** 492 * Fires once all must-use and network-activated plugins have loaded. 493 * 494 * @since 2.8.0 495 */ 496 do_action( 'muplugins_loaded' ); 497 498 if ( is_multisite() ) { 499 ms_cookie_constants(); 500 } 501 502 // Define constants after multisite is loaded. 503 wp_cookie_constants(); 504 505 // Define and enforce our SSL constants. 506 wp_ssl_constants(); 507 508 // Create common globals. 509 require ABSPATH . WPINC . '/vars.php'; 510 511 // Make taxonomies and posts available to plugins and themes. 512 // @plugin authors: warning: these get registered again on the init hook. 513 create_initial_taxonomies(); 514 create_initial_post_types(); 515 516 wp_start_scraping_edited_file_errors(); 517 518 // Register the default theme directory root. 519 register_theme_directory( get_theme_root() ); 520 521 if ( ! is_multisite() && wp_is_fatal_error_handler_enabled() ) { 522 // Handle users requesting a recovery mode link and initiating recovery mode. 523 wp_recovery_mode()->initialize(); 524 } 525 526 // To make get_plugin_data() available in a way that's compatible with plugins also loading this file, see #62244. 527 require_once ABSPATH . 'wp-admin/includes/plugin.php'; 528 529 // Load active plugins. 530 foreach ( wp_get_active_and_valid_plugins() as $plugin ) { 531 wp_register_plugin_realpath( $plugin ); 532 533 $plugin_data = get_plugin_data( $plugin, false, false ); 534 535 $textdomain = $plugin_data['TextDomain']; 536 if ( $textdomain ) { 537 if ( $plugin_data['DomainPath'] ) { 538 $GLOBALS['wp_textdomain_registry']->set_custom_path( $textdomain, dirname( $plugin ) . $plugin_data['DomainPath'] ); 539 } else { 540 $GLOBALS['wp_textdomain_registry']->set_custom_path( $textdomain, dirname( $plugin ) ); 541 } 542 } 543 544 $_wp_plugin_file = $plugin; 545 include_once $plugin; 546 $plugin = $_wp_plugin_file; // Avoid stomping of the $plugin variable in a plugin. 547 548 /** 549 * Fires once a single activated plugin has loaded. 550 * 551 * @since 5.1.0 552 * 553 * @param string $plugin Full path to the plugin's main file. 554 */ 555 do_action( 'plugin_loaded', $plugin ); 556 } 557 unset( $plugin, $_wp_plugin_file, $plugin_data, $textdomain ); 558 559 // Load pluggable functions. 560 require ABSPATH . WPINC . '/pluggable.php'; 561 require ABSPATH . WPINC . '/pluggable-deprecated.php'; 562 563 // Set internal encoding. 564 wp_set_internal_encoding(); 565 566 // Run wp_cache_postload() if object cache is enabled and the function exists. 567 if ( WP_CACHE && function_exists( 'wp_cache_postload' ) ) { 568 wp_cache_postload(); 569 } 570 571 /** 572 * Fires once activated plugins have loaded. 573 * 574 * Pluggable functions are also available at this point in the loading order. 575 * 576 * @since 1.5.0 577 */ 578 do_action( 'plugins_loaded' ); 579 580 // Define constants which affect functionality if not already defined. 581 wp_functionality_constants(); 582 583 // Add magic quotes and set up $_REQUEST ( $_GET + $_POST ). 584 wp_magic_quotes(); 585 586 /** 587 * Fires when comment cookies are sanitized. 588 * 589 * @since 2.0.11 590 */ 591 do_action( 'sanitize_comment_cookies' ); 592 593 /** 594 * WordPress Query object 595 * 596 * @since 2.0.0 597 * 598 * @global WP_Query $wp_the_query WordPress Query object. 599 */ 600 $GLOBALS['wp_the_query'] = new WP_Query(); 601 602 /** 603 * Holds the reference to {@see $wp_the_query}. 604 * Use this global for WordPress queries 605 * 606 * @since 1.5.0 607 * 608 * @global WP_Query $wp_query WordPress Query object. 609 */ 610 $GLOBALS['wp_query'] = $GLOBALS['wp_the_query']; 611 612 /** 613 * Holds the WordPress Rewrite object for creating pretty URLs 614 * 615 * @since 1.5.0 616 * 617 * @global WP_Rewrite $wp_rewrite WordPress rewrite component. 618 */ 619 $GLOBALS['wp_rewrite'] = new WP_Rewrite(); 620 621 /** 622 * WordPress Object 623 * 624 * @since 2.0.0 625 * 626 * @global WP $wp Current WordPress environment instance. 627 */ 628 $GLOBALS['wp'] = new WP(); 629 630 /** 631 * WordPress Widget Factory Object 632 * 633 * @since 2.8.0 634 * 635 * @global WP_Widget_Factory $wp_widget_factory 636 */ 637 $GLOBALS['wp_widget_factory'] = new WP_Widget_Factory(); 638 639 /** 640 * WordPress User Roles 641 * 642 * @since 2.0.0 643 * 644 * @global WP_Roles $wp_roles WordPress role management object. 645 */ 646 $GLOBALS['wp_roles'] = new WP_Roles(); 647 648 /** 649 * Fires before the theme is loaded. 650 * 651 * @since 2.6.0 652 */ 653 do_action( 'setup_theme' ); 654 655 // Define the template related constants and globals. 656 wp_templating_constants(); 657 wp_set_template_globals(); 658 659 // Load the default text localization domain. 660 load_default_textdomain(); 661 662 $locale = get_locale(); 663 $locale_file = WP_LANG_DIR . "/$locale.php"; 664 if ( ( 0 === validate_file( $locale ) ) && is_readable( $locale_file ) ) { 665 require $locale_file; 666 } 667 unset( $locale_file ); 668 669 /** 670 * WordPress Locale object for loading locale domain date and various strings. 671 * 672 * @since 2.1.0 673 * 674 * @global WP_Locale $wp_locale WordPress date and time locale object. 675 */ 676 $GLOBALS['wp_locale'] = new WP_Locale(); 677 678 /** 679 * WordPress Locale Switcher object for switching locales. 680 * 681 * @since 4.7.0 682 * 683 * @global WP_Locale_Switcher $wp_locale_switcher WordPress locale switcher object. 684 */ 685 $GLOBALS['wp_locale_switcher'] = new WP_Locale_Switcher(); 686 $GLOBALS['wp_locale_switcher']->init(); 687 688 // Load the functions for the active theme, for both parent and child theme if applicable. 689 foreach ( wp_get_active_and_valid_themes() as $theme ) { 690 $wp_theme = wp_get_theme( basename( $theme ) ); 691 692 $wp_theme->load_textdomain(); 693 694 if ( file_exists( $theme . '/functions.php' ) ) { 695 include $theme . '/functions.php'; 696 } 697 } 698 unset( $theme, $wp_theme ); 699 700 /** 701 * Fires after the theme is loaded. 702 * 703 * @since 3.0.0 704 */ 705 do_action( 'after_setup_theme' ); 706 707 // Create an instance of WP_Site_Health so that Cron events may fire. 708 if ( ! class_exists( 'WP_Site_Health' ) ) { 709 require_once ABSPATH . 'wp-admin/includes/class-wp-site-health.php'; 710 } 711 WP_Site_Health::get_instance(); 712 713 // Set up current user. 714 $GLOBALS['wp']->init(); 715 716 /** 717 * Fires after WordPress has finished loading but before any headers are sent. 718 * 719 * Most of WP is loaded at this stage, and the user is authenticated. WP continues 720 * to load on the {@see 'init'} hook that follows (e.g. widgets), and many plugins instantiate 721 * themselves on it for all sorts of reasons (e.g. they need a user, a taxonomy, etc.). 722 * 723 * If you wish to plug an action once WP is loaded, use the {@see 'wp_loaded'} hook below. 724 * 725 * @since 1.5.0 726 */ 727 do_action( 'init' ); 728 729 // Check site status. 730 if ( is_multisite() ) { 731 $file = ms_site_check(); 732 if ( true !== $file ) { 733 require $file; 734 die(); 735 } 736 unset( $file ); 737 } 738 739 /** 740 * This hook is fired once WP, all plugins, and the theme are fully loaded and instantiated. 741 * 742 * Ajax requests should use wp-admin/admin-ajax.php. admin-ajax.php can handle requests for 743 * users not logged in. 744 * 745 * @link https://developer.wordpress.org/plugins/javascript/ajax 746 * 747 * @since 3.0.0 748 */ 749 do_action( 'wp_loaded' );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated : Thu Apr 3 08:20:01 2025 | Cross-referenced by PHPXref |