WPSEO_Option_Wpseo::remove_option_filters
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() WPSEO Option Wpseo::remove option filters Yoast 27.8
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 );
}