upgrade_380()WP 3.8.0

Execute changes made in WordPress 3.8.0.

Хуков нет.

Возвращает

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

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

upgrade_380();

Заметки

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

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

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

Код upgrade_380() WP 6.5.2

function upgrade_380() {
	global $wp_current_db_version;

	if ( $wp_current_db_version < 26691 ) {
		deactivate_plugins( array( 'mp6/mp6.php' ), true );
	}
}