Automattic\WooCommerce\Blocks\Domain\Services
Hydration::disable_nonce_check_callback
Callback to disable the nonce check. While we could use __return_true, we use a custom named callback so that we can remove it later without affecting other filters.
Метод класса: Hydration{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Hydration = new Hydration(); $Hydration->disable_nonce_check_callback();
Код Hydration::disable_nonce_check_callback() Hydration::disable nonce check callback WC 10.3.6
public function disable_nonce_check_callback() {
return true;
}