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