WPSEO_Option_Wpseo::remove_option_filters()publicYoast 1.0

Remove the option filters. Called from the clean_up methods to make sure we retrieve the original old option.

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

Хуков нет.

Возвращает

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

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

$WPSEO_Option_Wpseo = new WPSEO_Option_Wpseo();
$WPSEO_Option_Wpseo->remove_option_filters();

Код WPSEO_Option_Wpseo::remove_option_filters() Yoast 22.4

public function remove_option_filters() {
	parent::remove_option_filters();

	list( $hookname, $callback, $priority ) = $this->get_verify_features_option_filter_hook();

	remove_filter( $hookname, $callback, $priority );
}