Automattic\WooCommerce\Blocks\Domain\Services

Hydration::disable_nonce_check_callback()publicWC 1.0

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() WC 9.4.2

public function disable_nonce_check_callback() {
	return true;
}