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.

Contents


Source

File: src/Common/Telemetry/Provider.php

	public function hook_telemetry_init(): void {
		add_action( 'admin_init', [ $this, 'initialize_telemetry' ], 5 );
	}

Top ↑

Changelog

Changelog
Version Description
5.1.3
5.1.13 Introduced.