Telemetry::get_privacy_url()

Get the URL for the Privacy Policy link in the optin modal.


Return

(string)


Top ↑

Source

File: src/Common/Telemetry/Telemetry.php

	public static function get_privacy_url(): string {
		/**
		 * Allow overriding the Privacy Policy URL.
		 *
		 * @since 5.1.0
		 *
		 * @param string $url The URL to the Privacy Policy page.
		 */
		return esc_url( apply_filters( 'tec_common_telemetry_privacy_url', 'https://evnt.is/1bcn' ) );
	}

Top ↑

Changelog

Changelog
Version Description
5.1.0 Introduced.