Skip to content

Consent Mode v2 & WP Consent API

SignalRelay is built following strict Privacy by Design principles.


SignalRelay implements the official WP Consent API. If you run any of the following Consent Management Plugins (CMPs):

  • Complianz GDPR/CCPA
  • CookieYes
  • Cookiebot
  • Real Cookie Banner

SignalRelay automatically respects the marketing and statistics categories, withholding both browser pixel scripts and server-side API transmissions until explicit consent is granted.


For custom setups or non-standard CMPs, developers can control dispatch logic using the signalrelay_consent filter in functions.php:

add_filter('signalrelay_consent', function(bool $allowed, string $platform): bool {
// Example: Deny server-side tracking if visitor has not consented
if (my_custom_consent_check()) {
return true;
}
return false;
}, 10, 2);