WordPress maintenance or security needs? Reach out!
TLDWP

Plugin: wp-consent-api (Used by 53,124 domains)

WP Consent API

WP Consent API is a plugin that standardizes the communication of accepted consent categories between plugins. It requires a cookie banner plugin and, at least, one other plugin that supports the WP Consent API.

With this plugin, all supporting plugins can use the same set of methods to read and register the current consent category, allowing consent management plugins and other plugins to work together, improving compliance with privacy laws.

WARNING: the plugin itself will not handle consent. It will show you how many plugins you have without Consent API support and will improve compliance on your site by ensuring smooth communication between cookie banner plugins and plugins that set cookies or track user data.

What problem does this plugin solve?

Currently, it is possible for a consent management plugin to block third-party services like Facebook, Google Maps, Twitter, etc. But if a WordPress plugin places a PHP cookie, a consent management plugin cannot prevent this.

Secondly, some plugins integrate the tracking code on the clientside in javascript files that, when blocked, break the site.

Or, if such a plugin’s javascript is minified, causing the URL to be unrecognizable and won’t get detected by an automatic blocking script.

Lastly, the blocking approach requires a list of all types of URL’s that tracks data. A generic API where plugins adhere to can greatly
facilitate a webmaster in getting a site compliant.

Does usage of this API prevent third-party services from tracking user data?

Primary this API is aimed at compliant first-party cookies or tracking by WordPress plugins. If such a plugin triggers, for example, Facebook,
usage of this API will be of help. If a user embeds a Facebook iframe, a blocking tool is needed that initially disables the iframe and or scripts.

Third-party scripts have to blocked by blocking functionality in a consent management plugin. To do this in core would be to intrusive, and is also not applicable to all users: only users with visitors from opt-in regions such as the European Union require such a feature. Such a feature also has a risk of breaking things. Additionally, blocking these and showing a nice placeholder requires even more sophisticated code, all of which should in my opinion not be part of WordPress core, for the same reasons.

How does it work?

There are two indicators that together tell if consent is given for a specific consent category, e.g., “marketing”:
1) the region based consent_type, which
can be opt-in, opt-out, or other possible consent_types;
2) and the visitor’s choice: not set, allow, or deny.

The consent_type is a function that wraps a filter, “wp_get_consent_type”. If there’s no consent management plugin to set it, it will return false. This will cause all consent categories to return true, allowing cookies to be set on all categories.

If opt-in is set using this filter, a category will only return true if the value of the visitor’s choice is “allow”.

If the region based consent_type is opt-out, it will return true if the visitor’s choice is not set or is “allow”.

Clientside, a consent management plugin can dynamically manipulate the consent type and set several cookie categories.

A plugin can use a hook to listen for changes or check the value of a given category.

Categories and most other stuff can be extended with a filter.

Existing integrations

Categorized, and sorted alphabetically

Example plugin

  • Example plugin. The plugin basically consists of a shortcode, with a div that shows a tracking or not tracking message. No actual tracking is done 🙂

Consent Management Providers

Consent Requiring Plugins

Demo site

wpconsentapi.org
Below are the plugins used to set up the demo site:

javascript, consent management plugin

//set consent type
window.wp_consent_type = 'optin'

//dispatch event when consent type is defined. This is useful if the region is detected server side, so the consent type is defined later during the pageload
let event = new CustomEvent('wp_consent_type_defined');
document.dispatchEvent( event );


//consent management plugin sets cookie when consent category value changes
wp_set_consent('marketing', 'allow');

javascript, tracking plugin

//listen to consent change event
document.addEventListener("wp_listen_for_consent_change", function (e) {
  var changedConsentCategory = e.detail;
  for (var key in changedConsentCategory) {
    if (changedConsentCategory.hasOwnProperty(key)) {
      if (key === 'marketing' && changedConsentCategory[key] === 'allow') {
        console.log("just given consent, track user")
      }
    }
  }
});

//basic implementation of consent check:
if (wp_has_consent('marketing')){
  activateMarketing();
  console.log("set marketing stuff now!");
} else {
  console.log("No marketing stuff please!");
}

PHP

//declare compliance with consent level API
$plugin = plugin_basename( __FILE__ );
add_filter( "wp_consent_api_registered_{$plugin}", '__return_true' );

/**
* Example how a plugin can register cookies with the consent API
 * These cookies can then be shown on the front-end, to the user, with wp_get_cookie_info()
 */

function my_wordpress_register_cookies(){
    if ( function_exists( 'wp_add_cookie_info' ) ) {
        wp_add_cookie_info( 'AMP_token', 'AMP', 'marketing', __( 'Session' ), __( 'Store a unique User ID.' ) );
    }
}
add_action('plugins_loaded', 'my_wordpress_register_cookies');


if (wp_has_consent('marketing')){
//do marketing stuff
}

Service-level consent

In addition to category-based consent, the API supports service-level consent control. This allows consent management plugins to grant or deny consent for specific services (like ‘google-analytics’ or ‘facebook-pixel’) independently from their category. When checking service consent with wp_has_service_consent(), the API first checks if explicit consent exists for that service. If no explicit consent is set, it falls back to the consent status of the service’s category. This enables fine-grained control: a user might accept statistics cookies in general, but explicitly deny a specific analytics service.

Service consent can be checked and set both server-side (PHP) and client-side (JavaScript):

PHP:

//check if a specific service has consent
if ( wp_has_service_consent( 'google-analytics' ) ) {
    //activate google analytics
}

//check if a service is explicitly denied
if ( wp_is_service_denied( 'facebook-pixel' ) ) {
    //service was explicitly denied by user
}

//set service consent
wp_set_service_consent( 'google-analytics', true ); //grant consent
wp_set_service_consent( 'facebook-pixel', false ); //deny consent

//listen for service consent changes
add_action( 'wp_consent_service_changed', function( $service, $consented ) {
    error_log( "Service {$service} consent changed to: " . ( $consented ? 'granted' : 'denied' ) );
}, 10, 2 );

JavaScript:

//check service consent
if ( wp_has_service_consent( 'youtube' ) ) {
    //activate tracking
}

//check if explicitly denied
if ( wp_is_service_denied( 'facebook-pixel' ) ) {
    //service denied
}

//set service consent
wp_set_service_consent( 'youtube', true );

//listen for service consent changes
document.addEventListener( 'wp_consent_api_status_change_service', function( e ) {
    console.log( 'Service: ' + e.detail.service + ', consented: ' + e.detail.value );
});

Any code suggestions? We’re on GitHub as well!

DomainExposuresHeadersLast Checked
e*s*l*t*o*s.ca (WP 7.0.4) F Aug 15, 2026
c*t*r*n*l*s*i*.com (WP 7.0.4) F Aug 15, 2026
p*s*p*r*w*r*i*r*.com (WP 7.0.4) F Aug 15, 2026
w*c*s*h*t*.com F Aug 15, 2026
d*o*e*v*n*e*i*t.com (WP 7.0.4) F Aug 15, 2026
e*t*l*g*l.ee (WP 7.0.4) F Aug 15, 2026
c*n*d*g*n*e*.org (WP 7.0.4) A Aug 15, 2026
h*p*y*s*r*s*o*r*.eu F Aug 15, 2026
m*-*e*r*s*e*e*t*r*e*r*.com F Aug 15, 2026
c*n*i*.dk (WP 7.0) B Aug 15, 2026
r*d*n*f*l*i*l*e*t.pl (WP 7.0.4) F Aug 15, 2026
e*s*f*e*.c*m.pl (WP 7.0.4) F Aug 15, 2026
w*c*a*n.com F Aug 15, 2026
d*t*p*o*e.at (WP 7.0.4) F Aug 15, 2026
c*d*r*o*i*n.c*.uk (WP 7.0.4) F Aug 15, 2026
b*u*i*m*n.pro (WP 7.0.4) F Aug 15, 2026
m*-*s.com F Aug 15, 2026
c*d*r*i*e*.c*.uk (WP 7.0.4) F Aug 15, 2026
d*o*e*l*w*.com C Aug 15, 2026
j*g*y*r*g*l*r*.com (WP 7.0.4) F Aug 15, 2026
a*j*r*s*s*e*s.com (WP 7.0.4) F Aug 15, 2026
b*g*r*f*l*s.it D Aug 15, 2026
s*o*a*b*u*y*n.com F Aug 15, 2026
s*-*e.org (WP 7.0.4) C Aug 15, 2026
f*s*i*n*i*s*d*r.de (WP 6.8.2) D Aug 15, 2026
l*z*m.es (WP 6.7.7) F Aug 15, 2026
l*y*a*s*u*z*i*h*r*n*.de (WP 7.0.4) F Aug 15, 2026
w*b*e*n*t*e*l*n*s.com (WP 7.0) F Aug 15, 2026
m*g*z*n*d*m*n*g*m*n*d*t*a*s*t*o*.fr F Aug 15, 2026
m*-*e*t*y*g*.com F Aug 15, 2026
m*-*j*l*n*r.com D Aug 15, 2026
g*r*e*m*e*.no F Aug 15, 2026
g*r*e*r*t*c*.fr (WP 7.0.4) F Aug 15, 2026
d*o*e*h*m*c.com F Aug 15, 2026
s*u*e*t*n*o.solutions (WP 7.0.3) F Aug 15, 2026
m*-*e*i*e*p*o*o.com A Aug 15, 2026
t*e*p*e*t*a*d*n*r.com (WP 7.0.4) F Aug 15, 2026
d*o*e*a*d*i*.com (WP 7.0.4) F Aug 15, 2026
a*j*s*a*l*g*t*h*n*e*.com (WP 7.0.4) F Aug 15, 2026
v*d*c*l*a*o*a*i*e.org (WP 7.0.2) F Aug 15, 2026
u*e*f*r*i*u*e*u.com (WP 7.0.2) C Aug 15, 2026
h*l*s*o*.c*m.sg C Aug 15, 2026
w*b*l.com (WP 7.0.4) F Aug 15, 2026
h*l*e*i*a.fr F Aug 15, 2026
g*l*a*p*r.ch C Aug 15, 2026
g*e*t*i*t*r*.com (WP 7.0.4) C Aug 15, 2026
f*t*c*b*d*n*a.cz (WP 6.9.1) F Aug 15, 2026
b*a*o*i.de (WP 7.0.4) F Aug 15, 2026
r*l*.org F Aug 15, 2026
s*n*e*o*r*e*m*r*i*l*s.com (WP 7.0.4) F Aug 15, 2026
s*n*e*i*m*s*r*a*.com (WP 7.0.3) F Aug 15, 2026
m*-*a*s*h*.com F Aug 15, 2026
s*b*s*i*.eu F Aug 15, 2026
b*l*d*a*o*d*n*.com (WP 7.0.4) F Aug 15, 2026
i*i*g*n.com D Aug 15, 2026
m*-*r.com D Aug 15, 2026
g*e*y*p*n*o*s.com D Aug 15, 2026
g*e*y*a*k*r.com F Aug 15, 2026
b*l*c*r*n*r*i*g.com B Aug 15, 2026
u*e*b*e*e*u*p*e*t.com D Aug 15, 2026
m*r*e*i*g*s*i*h*l*g*a.hu (WP 7.0.3) F Aug 15, 2026
b*l*b*g.com F Aug 15, 2026
i*m*b*l*e*-*a*s*a*s*a*h.de (WP 7.0.3) F Aug 15, 2026
p*o*e*t*l*w.dk F Aug 15, 2026
g*e*u*i*i*d*h*o*y.com (WP 7.0.4) F Aug 15, 2026
g*e*u*.com (WP 7.0.4) F Aug 15, 2026
w*b*s*s*r*i*e.eu (WP 7.0.4) F Aug 15, 2026
g*e*y*e*.com (WP 7.0.4) F Aug 15, 2026
w*a*n*i*n*g*s*a*t*n*e*.com F Aug 15, 2026
u*e*o*b*n*s*u*c*s.com (WP 7.0.4) F Aug 15, 2026
g*l*a*c*n*h*r*o.c*m.br F Aug 15, 2026
a*p.nl (WP 7.0.4) F Aug 15, 2026
w*1*l*.com (WP 7.0.4) F Aug 15, 2026
p*s*i*e*c*m*o*e*t*.com F Aug 15, 2026
p*s*i*r*a*g*r*e*.com F Aug 15, 2026
w*a*r*h.com (WP 7.0.4) C Aug 15, 2026
t*e*p*c*r*m.o*g.au B Aug 15, 2026
c*r*i*.es A Aug 15, 2026
a*d*e*.co F Aug 15, 2026
a*i*y*i*f*t*c*i*d*a.com A Aug 15, 2026
l*n*b*s*.io (WP 7.0.4) F Aug 15, 2026
y*u*p.it A Aug 15, 2026
f*r*i*.space (WP 6.9.7) F Aug 15, 2026
p*s*i*n*w*s*s.com (WP 7.0.4) F Aug 15, 2026
l*a.lighting F Aug 15, 2026
c*t*h*a*k*t.com (WP 7.0.4) F Aug 15, 2026
d*o*d*d*v*l*p*r*.com (WP 7.0.4) F Aug 15, 2026
n*x*s*h*t*b*o*h.com (WP 7.0.4) F Aug 15, 2026
c*r*l*a*l*b*r*t*r*e*.c*.uk C Aug 15, 2026
s*n*b*r*r*.com F Aug 15, 2026
f*l*o*n*k.cz F Aug 15, 2026
n*x*s*e*i*a*.com (WP 7.0.4) F Aug 15, 2026
n*x*s*i*h*n*.com (WP 7.0.4) F Aug 15, 2026
m*w*b*t*d*o*.com C Aug 15, 2026
n*x*d*u*.com (WP 6.7) F Aug 15, 2026
s*n*i*l*w*b.com B Aug 15, 2026
s*a*i*v*r*t.sk (WP 7.0.4) F Aug 15, 2026
s*n*a*d*r*s*.com (WP 7.0.4) F Aug 15, 2026
m*t*.com F Aug 15, 2026
m*m*.com (WP 7.0.4) F Aug 15, 2026

Top 50 Plugins

Plugin Count
elementor 1,769,396
contact-form-7 1,749,773
elementor-pro 1,052,360
woocommerce 816,523
revslider 607,520
jetpack 453,644
js_composer 418,743
wp-rocket 341,309
essential-addons-for-elementor-lite 264,228
gravityforms 256,634
complianz-gdpr 256,278
google-site-kit 233,744
cookie-law-info 227,843
instagram-feed 224,048
sitepress-multilingual-cms 210,255
header-footer-elementor 206,197
google-analytics-for-wordpress 204,604
bluehost-wordpress-plugin 192,370
elementskit-lite 179,845
gutenberg 167,763
cookie-notice 148,112
litespeed-cache 145,750
gtranslate 124,381
wpforms-lite 123,164
the-events-calendar 121,976
astra-sites 112,770
popup-maker 109,305
woocommerce-payments 108,997
gutenberg-core 107,135
tablepress 102,355
honeypot 97,786
astra-addon 93,613
wp-smushit 90,577
duracelltomi-google-tag-manager 90,395
layerslider 88,855
all-in-one-seo-pack 88,730
coblocks 87,817
bb-plugin 86,553
akismet 84,720
premium-addons-for-elementor 84,016
ml-slider 82,465
cleantalk-spam-protect 82,240
mailchimp-for-wp 81,339
megamenu 80,150
woocommerce-gateway-stripe 79,185
jet-engine 78,044
ewww-image-optimizer 76,911
fusion-builder 76,781
wp-pagenavi 76,523
smart-slider-3 75,961

Top 50 Themes

Theme Count
hello-elementor 620,565
Divi 494,193
astra 413,207
flatsome 141,406
Avada 120,606
generatepress 114,739
oceanwp 80,169
kadence 78,403
pub 74,996
enfold 68,437
salient 64,873
twentyseventeen 54,245
bb-theme 53,180
twentytwentyfour 52,674
betheme 52,483
blocksy 50,831
cocoon-master 49,263
dt-the7 45,384
twentytwentyfive 45,260
woodmart 44,189
neve 37,980
h4 37,399
Avada-Child-Theme 36,887
gox 36,371
bridge 31,166
twentytwentyone 30,184
lightning 30,087
twentytwenty 28,687
swell 28,193
bricks 26,568
Impreza 26,008
Newspaper 24,199
twentytwentythree 22,094
epik-redesign 19,109
twentytwentytwo 18,747
uncode 18,431
pro 17,605
twentysixteen 17,599
storefront 16,274
sydney 16,206
Total 14,321
hello-theme-child-master 14,051
factory-templates-4 13,716
themify-ultra 12,948
extendable 12,599
hestia 12,549
yootheme 12,456
yith-wonder 12,053
porto 11,955
twentyfifteen 11,867