Automattic\WooCommerce\Internal\Integrations
WPConsentAPI::register
Register the consent API.
Метод класса: WPConsentAPI{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WPConsentAPI = new WPConsentAPI(); $WPConsentAPI->register();
Код WPConsentAPI::register() WPConsentAPI::register WC 10.6.2
public function register() {
add_action(
'init',
function() {
$this->on_init();
},
20 // After OrderAttributionController.
);
}