Telemetry::get_plugin_slug()

Get the slug of the plugin.

Contents


Source

File: src/Common/Telemetry/Telemetry.php

	public static function get_plugin_slug() {
		if ( empty( self::$plugin_slug ) ) {
			self::$plugin_slug = self::get_parent_plugin_slug();
		}

		return self::$plugin_slug;
	}

Top ↑

Changelog

Changelog
Version Description
5.1.0 Introduced.