Uses
Uses | Description |
---|---|
wp-admin/includes/class-wp-automatic-updater.php: WP_Automatic_Updater::after_plugin_theme_update() | If we tried to perform plugin or theme updates, check if we should send an email. |
wp-admin/includes/class-wp-upgrader.php: WP_Upgrader::create_lock() | Creates a lock using WordPress options. |
wp-admin/includes/class-wp-upgrader.php: WP_Upgrader::release_lock() | Releases an upgrader lock. |
wp-includes/update.php: wp_clean_update_cache() | Clear existing update caches for plugins, themes, and core. |
wp-admin/includes/class-wp-automatic-updater.php: WP_Automatic_Updater::update() | Update an item, if appropriate. |
wp-admin/includes/class-wp-automatic-updater.php: WP_Automatic_Updater::send_debug_email() | Prepares and sends an email of a full log of background update results, useful for debugging and geekery. |
wp-admin/includes/class-wp-automatic-updater.php: WP_Automatic_Updater::after_core_update() | If we tried to perform a core update, check if we should send an email, and if we need to avoid processing future updates. |
wp-admin/includes/class-wp-automatic-updater.php: automatic_updates_send_debug_email | Filters whether to send a debugging email for each automatic background update. |
wp-admin/includes/class-wp-automatic-updater.php: automatic_updates_complete | Fires after all automatic updates have run. |
wp-admin/includes/class-wp-automatic-updater.php: WP_Automatic_Updater::is_disabled() | Whether the entire automatic updater is disabled. |
wp-admin/includes/update.php: find_core_auto_update() | Gets the best available (and enabled) Auto-Update for WordPress core. |
wp-admin/includes/plugin.php: wp_clean_plugins_cache() | Clears the plugins cache used by get_plugins() and by default, the plugin updates cache. |
wp-includes/theme.php: wp_clean_themes_cache() | Clears the cache held by get_theme_roots() and WP_Theme. |
wp-includes/general-template.php: get_bloginfo() | Retrieves information about the current site. |
wp-includes/functions.php: is_main_network() | Determine whether a network is the main network of the Multisite installation. |
wp-includes/functions.php: is_main_site() | Determine whether a site is the main site of the current network. |
wp-includes/update.php: wp_update_plugins() | Checks for available updates to plugins based on the latest versions hosted on WordPress.org. |
wp-includes/update.php: wp_update_themes() | Checks for available updates to themes based on the latest versions hosted on WordPress.org. |
wp-includes/update.php: wp_version_check() | Check WordPress version against the newest version. |
wp-includes/update.php: wp_get_translation_updates() | Retrieves a list of all language updates available. |
wp-includes/plugin.php: remove_action() | Removes a function from a specified action hook. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/option.php: get_site_transient() | Retrieves the value of a site transient. |