Telemetry::get_privacy_url()
Get the URL for the Privacy Policy link in the optin modal.
Return
(string)
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' ) );
}
Changelog
| Version | Description |
|---|---|
| 5.1.0 | Introduced. |