Automattic\WooCommerce\Internal\Integrations

WPConsentAPI::register()publicWC 1.0

Register the consent API.

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

Хуков нет.

Возвращает

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

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

$WPConsentAPI = new WPConsentAPI();
$WPConsentAPI->register();

Код WPConsentAPI::register() WC 9.7.1

public function register() {
	add_action(
		'init',
		function() {
			$this->on_init();
		},
		20 // After OrderAttributionController.
	);
}