get_plugin_updates()WP 2.9.0

Retrieves plugins with updates available.

Хуков нет.

Возвращает

Массив.

Использование

get_plugin_updates();

Список изменений

С версии 2.9.0 Введена.

Код get_plugin_updates() WP 6.5.2

function get_plugin_updates() {
	$all_plugins     = get_plugins();
	$upgrade_plugins = array();
	$current         = get_site_transient( 'update_plugins' );

	foreach ( (array) $all_plugins as $plugin_file => $plugin_data ) {
		if ( isset( $current->response[ $plugin_file ] ) ) {
			$upgrade_plugins[ $plugin_file ]         = (object) $plugin_data;
			$upgrade_plugins[ $plugin_file ]->update = $current->response[ $plugin_file ];
		}
	}

	return $upgrade_plugins;
}