upgrade_372()WP 3.7.2

Execute changes made in WordPress 3.7.2.

Хуков нет.

Возвращает

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

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

upgrade_372();

Заметки

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

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

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

Код upgrade_372() WP 6.5.2

function upgrade_372() {
	global $wp_current_db_version;

	if ( $wp_current_db_version < 26148 ) {
		wp_clear_scheduled_hook( 'wp_maybe_auto_update' );
	}
}