Telemetry::get_terms_url()

Get the URL for the Terms of Service link in the optin modal.


Return

(string)


Top ↑

Source

File: src/Common/Telemetry/Telemetry.php

	public static function get_terms_url(): string {
		/**
		 * Allow overriding the Terms of Service URL.
		 *
		 * @since 5.1.0
		 *
		 * @param string $url The URL to the Terms of Service page.
		 */
		return esc_url( apply_filters( 'tec_common_telemetry_terms_url', 'https://evnt.is/1bcm' ) );
	}

Top ↑

Changelog

Changelog
Version Description
5.1.0 Introduced.