Uses
Uses | Description |
---|---|
wp-includes/update.php: core_version_check_query_args | Filter the query arguments sent as part of the core version check. |
wp-includes/load.php: wp_doing_cron() | Determines whether the current request is a WordPress cron request. |
wp-includes/load.php: wp_installing() | Check or set whether WordPress is in “installation” mode. |
wp-includes/update.php: wp_maybe_auto_update | Fires during wp_cron, starting the auto-update process. |
wp-includes/functions.php: wp_json_encode() | Encode a variable into JSON, with some sanity checks. |
wp-includes/cron.php: wp_next_scheduled() | Retrieve the next timestamp for an event. |
wp-includes/cron.php: wp_schedule_single_event() | Schedules an event to run only once. |
wp-includes/l10n.php: wp_get_installed_translations() | Get installed translations. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/l10n.php: get_locale() | Retrieves the current locale. |
wp-includes/formatting.php: esc_url() | Checks and cleans a URL. |
wp-includes/formatting.php: esc_html() | Escaping for HTML blocks. |
wp-includes/load.php: is_multisite() | If Multisite is enabled. |
wp-includes/link-template.php: set_url_scheme() | Sets the scheme for a URL. |
wp-includes/link-template.php: network_site_url() | Retrieves the site URL for the current network. |
wp-includes/link-template.php: home_url() | Retrieves the URL for the current site where the front end is accessible. |
wp-includes/update.php: core_version_check_locale | Filters the locale requested for WordPress core translations. |
wp-includes/http.php: wp_http_supports() | Determines if there is an HTTP Transport that can process this request. |
wp-includes/http.php: wp_remote_post() | Performs an HTTP request using the POST method and returns its response. |
wp-includes/http.php: wp_remote_retrieve_response_code() | Retrieve only the response code from the raw response. |
wp-includes/http.php: wp_remote_retrieve_body() | Retrieve only the body from the raw response. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/plugin.php: doing_action() | Retrieve the name of an action currently being processed. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/option.php: set_site_transient() | Sets/updates the value of a site transient. |
wp-includes/option.php: get_site_transient() | Retrieves the value of a site transient. |
wp-includes/option.php: get_site_option() | Retrieve an option value for the current network based on name of option. |
wp-includes/user.php: count_users() | Count number of users who have each of the user roles. |
wp-includes/ms-functions.php: get_user_count() | The number of active users in your installation. |
wp-includes/ms-functions.php: get_blog_count() | The number of active sites on your installation. |
wp-includes/wp-db.php: wpdb::db_version() | Retrieves the MySQL server version. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |