wp-includes/load.php


Lines:

1 to 100 of 121
<?php

/**
 * These functions are needed to load WordPress.
 *
 * @package WordPress
 */

/* function wp_get_server_protocol() – Return the HTTP protocol sent by the server. */

/* function wp_fix_server_vars() – Fix `$_SERVER` variables for various setups. */

/* function wp_populate_basic_auth_from_authorization_header() – Populates the Basic Auth server details from the Authorization header. */

/* function wp_check_php_mysql_versions() – Check for the required PHP version, and the MySQL extension or
a database drop-in. */

/* function wp_get_environment_type() – Retrieves the current environment type. */

/* function wp_favicon_request() – Don’t load all of WordPress when handling a favicon.ico request. */

/* function wp_maintenance() – Die with a maintenance message when conditions are met. */

/* function wp_is_maintenance_mode() – Check if maintenance mode is enabled. */

/* function timer_float() – Get the time elapsed so far during this PHP script. */

/* function timer_start() – Start the WordPress micro-timer. */

/* function timer_stop() – Retrieve or display the time from the page start to when function is called. */

/* function wp_debug_mode() – Set PHP error reporting based on WordPress debug settings. */

/* function wp_set_lang_dir() – Set the location of the language directory. */

/* function require_wp_db() – Load the database class file and instantiate the `$wpdb` global. */

/* function wp_set_wpdb_vars() – Set the database table prefix and the format specifiers for database
table columns. */

/* function wp_using_ext_object_cache() – Toggle `$_wp_using_ext_object_cache` on and off without directly
touching global. */

/* function wp_start_object_cache() – Start the WordPress object cache. */

/* function wp_not_installed() – Redirect to the installer if WordPress is not installed. */

/* function wp_get_mu_plugins() – Retrieve an array of must-use plugin files. */

/* function wp_get_active_and_valid_plugins() – Retrieve an array of active and valid plugin files. */

/* function wp_skip_paused_plugins() – Filters a given list of plugins, removing any paused plugins from it. */

/* function wp_get_active_and_valid_themes() – Retrieves an array of active and valid themes. */

/* function wp_skip_paused_themes() – Filters a given list of themes, removing any paused themes from it. */

/* function wp_is_recovery_mode() – Is WordPress in Recovery Mode. */

/* function is_protected_endpoint() – Determines whether we are currently on an endpoint that should be protected against WSODs. */

/* function is_protected_ajax_action() – Determines whether we are currently handling an Ajax action that should be protected against WSODs. */

/* function wp_set_internal_encoding() – Set internal encoding. */

/* function wp_magic_quotes() – Add magic quotes to `$_GET`, `$_POST`, `$_COOKIE`, and `$_SERVER`. */

/* function shutdown_action_hook() – Runs just before PHP shuts down execution. */

/* function wp_clone() – Copy an object. */

/* function is_login() – Determines whether the current request is for the login screen. */

/* function is_admin() – Determines whether the current request is for an administrative interface page. */

/* function is_blog_admin() – Whether the current request is for a site’s admininstrative interface. */

/* function is_network_admin() – Whether the current request is for the network administrative interface. */

/* function is_user_admin() – Whether the current request is for a user admin screen. */

/* function is_multisite() – If Multisite is enabled. */

/* function get_current_blog_id() – Retrieve the current site ID. */

/* function get_current_network_id() – Retrieves the current network ID. */

/* function wp_load_translations_early() – Attempt an early load of translations. */

/* function wp_installing() – Check or set whether WordPress is in "installation" mode. */

/* function is_ssl() – Determines if SSL is used. */

/* function wp_convert_hr_to_bytes() – Converts a shorthand byte value to an integer byte value. */

/* function wp_is_ini_value_changeable() – Determines whether a PHP ini value is changeable at runtime. */

/* function wp_doing_ajax() – Determines whether the current request is a WordPress Ajax request. */

/* function wp_using_themes() – Determines whether the current request should use themes. */

 View on GitHub View on Trac

Called by

    Invoked by

      Calls

      Call hooks

      API Letters: ,,,