WPSEO_Upgrade::upgrade_207()privateYoast 1.0

Performs the 20.7 upgrade routine. Removes the metadata related to the settings page introduction modal for all the users. Also, schedules another cleanup scheduled action.

Метод класса: WPSEO_Upgrade{}

Хуков нет.

Возвращает

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

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

// private - только в коде основоного (родительского) класса
$result = $this->upgrade_207();

Код WPSEO_Upgrade::upgrade_207() Yoast 22.4

private function upgrade_207() {
	add_action( 'shutdown', [ $this, 'delete_user_introduction_meta' ] );
}