Provider::hook_telemetry_init()
It’s super important to make sure when hooking to WordPress actions that we don’t do before we are sure that telemetry was properly booted into the system.
Source
File: src/Common/Telemetry/Provider.php
public function hook_telemetry_init(): void {
add_action( 'admin_init', [ $this, 'initialize_telemetry' ], 5 );
}
Changelog
| Version | Description |
|---|---|
| 5.1.3 | |
| 5.1.13 | Introduced. |