upgrade_370()WP 3.7.0

Execute changes made in WordPress 3.7.

Хуков нет.

Возвращает

null. Ничего (null).

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

upgrade_370();

Заметки

  • Global. int. $wp_current_db_version The old (current) database version.

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

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

Код upgrade_370() WP 6.7.2

function upgrade_370() {
	global $wp_current_db_version;

	if ( $wp_current_db_version < 25824 ) {
		wp_clear_scheduled_hook( 'wp_auto_updates_maybe_update' );
	}
}