WP_Debug_Data::check_for_updates() – Calls all core functions to check for updates.

You appear to be a bot. Output may be restricted

Description

Calls all core functions to check for updates.

Usage

WP_Debug_Data::check_for_updates();

Parameters

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-debug-data.php
Lines:

1 to 5 of 5
  public static function check_for_updates() {
    wp_version_check();
    wp_update_plugins();
    wp_update_themes();
  }
 

 View on GitHub View on Trac