WPSEO_Options::ensure_options_exist()public staticYoast 1.0

Check that all options exist in the database and add any which don't.

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

Хуков нет.

Возвращает

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

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

$result = WPSEO_Options::ensure_options_exist();

Код WPSEO_Options::ensure_options_exist() Yoast 22.4

public static function ensure_options_exist() {
	foreach ( static::$option_instances as $instance ) {
		$instance->maybe_add_option();
	}
}