WordPress maintenance or security needs? Reach out!
TLDWP

Plugin: wp-consent-api (Used by 52,951 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
s*y*i*s*s*e*.com F Aug 18, 2026
m*l*e*e*.com C Aug 18, 2026
i*p*i*e*i*n*n*y.com F Aug 18, 2026
d*t*h*h*m*.com (WP 7.0.4) D Aug 18, 2026
g*t*a*p*c*s*o*e*s.com (WP 7.0.4) B Aug 18, 2026
o*d*s.shop (WP 7.0.4) F Aug 18, 2026
s*m*l*-*o*m*n*c*t*.de (WP 7.0.4) F Aug 18, 2026
c*n*r*l*t*t*s*a*e*r*s*u*c*s.com F Aug 18, 2026
p*a*l*a*h*s.com F Aug 18, 2026
s*y*i*e*i*f*.com (WP 7.0.4) F Aug 18, 2026
s*y*r*n*.com A Aug 18, 2026
s*y*a*y*u*.com (WP 7.0.4) F Aug 18, 2026
d*t*h*a*a*a*v*n*u*e*.com F Aug 18, 2026
v*i*l*g*s.com F Aug 18, 2026
p*r*s*e*t*l*a*.com (WP 7.0.4) F Aug 18, 2026
b*r*y*n*s*n*r*.com D Aug 18, 2026
l*a*b*o*m*.com (WP 7.0.4) F Aug 18, 2026
f*o*a*o.pl (WP 6.9.1) F Aug 18, 2026
s*m*r*s*a*i*a*a*i.com (WP 6.8.8) F Aug 18, 2026
m*k*t*t*o*i*s*a*.ee (WP 7.0.4) F Aug 18, 2026
i*-*o*k*4*.nl (WP 7.0.4) F Aug 18, 2026
v*n*a*t*c.com F Aug 18, 2026
a*o*a*.org (WP 7.0.4) B Aug 18, 2026
o*e*a*.net (WP 7.0.4) F Aug 18, 2026
s*m*l*o.com F Aug 18, 2026
b*r*s*a*d*a*e.com (WP 7.0.4) F Aug 18, 2026
s*m*a*b*.com (WP 7.0.4) F Aug 18, 2026
f*y*p*o*e*c*.aero (WP 7.0.4) F Aug 18, 2026
c*i*b*r*p.com (WP 7.0.3) F Aug 18, 2026
i*u*h*.no (WP 7.0.4) F Aug 18, 2026
s*t*r*s*n*e*.com F Aug 18, 2026
s*t*r*p*i*e.com F Aug 18, 2026
c*l*e*t*v*t*3*5.fr (WP 7.0.4) A Aug 18, 2026
n*u*o*.hu (WP 7.0.4) F Aug 18, 2026
t*r*i*o*e*i*a.it D Aug 18, 2026
s*t*r*e*e*t*v*s.com (WP 7.0.4) F Aug 18, 2026
w*y*t*f*g*t*l*s*i*p*l*u*i*n.com F Aug 18, 2026
v*n*l*s*y*e*r*o*.com F Aug 18, 2026
j*n*e*i*a*.com (WP 6.8.3) D Aug 18, 2026
m*l*e*p*r*u*u*s*.com F Aug 18, 2026
m*l*e*p*e*a*o*m*.com (WP 7.0.4) F Aug 18, 2026
l*a*u*c*t*d*i*i*g*a*e*y.com (WP 7.0.4) D Aug 18, 2026
i*t*m*-*t*d*o.fr (WP 7.0.4) F Aug 18, 2026
k*l*i*r*f*e*o*d*s*k.hu F Aug 18, 2026
l*a*y*a*e.com F Aug 18, 2026
p*r*i*a*.com (WP 7.0.4) F Aug 18, 2026
p*n*e*.sk (WP 6.4.10) F Aug 18, 2026
l*v*n*a*i*m.hu (WP 7.0.4) D Aug 18, 2026
i*p*e*s*o*g*a*d*f*r*a*.com F Aug 18, 2026
s*e*l*n*w*.life (WP 7.0.4) F Aug 18, 2026
i*p*e*s*o*e*l*g*e*.com F Aug 18, 2026
w*y*o*a*r*a*e*t*t*.com (WP 7.0.4) F Aug 18, 2026
i*p*e*s*o*-*a*c*-*p*c*e*c*l*r.com F Aug 18, 2026
i*p*e*s*o*-*r*n*f*r*a*.com F Aug 18, 2026
i*p*e*s*o*n*n*y.com F Aug 18, 2026
c*i*a*i*a*o*a.com B Aug 18, 2026
s*h*d*n*i*n*t*4*a*t*u*h*t*l.de (WP 7.0.3) F Aug 18, 2026
p*a*l*a*n*e*s.com F Aug 18, 2026
m*z*w*e*k*e*e*t*u*p*y*h*t*r*p*i.pl F Aug 18, 2026
h*a*e*-*n*.c*.il (WP 7.0) F Aug 18, 2026
s*c*m*a*y.it (WP 7.0.4) F Aug 18, 2026
d*s*y*a*c*n*.com (WP 7.0.2) F Aug 18, 2026
y*w*t.sn (WP 7.0.4) F Aug 18, 2026
c*n*e*t.net (WP 7.0.4) F Aug 18, 2026
l*a*l*v*s*f*r*.ch (WP 7.0.4) F Aug 18, 2026
l*a*l*v*s*f*r*.de (WP 7.0.4) F Aug 18, 2026
w*y*o*n*s*o*n*e*i*g*l*c.com D Aug 18, 2026
v*n*d*s.com B Aug 18, 2026
v*n*d*n*b*s*h.com F Aug 18, 2026
v*m*e*.com (WP 7.0.4) D Aug 18, 2026
n*w*o*e*r*d*o.sk (WP 7.0.3) F Aug 18, 2026
j*z*s*l.org (WP 7.0.4) F Aug 18, 2026
i*o*m*r*e*.fr (WP 7.0.4) F Aug 18, 2026
i*o*e*z.be (WP 7.0.4) F Aug 18, 2026
p*a*l*o*o*y*c*t*.com F Aug 18, 2026
o*c*o*e.com (WP 7.0.4) F Aug 18, 2026
g*t*r*s*e*e*t*.com D Aug 18, 2026
g*t*r*s*c*n*e*t.com D Aug 18, 2026
c*i*a*e*a*u*a*.com (WP 7.0.4) F Aug 18, 2026
l*a*l*v*s*f*r*.com (WP 7.0.4) F Aug 18, 2026
k*d.fr F Aug 18, 2026
a*f*a*e.com F Aug 18, 2026
n*g*t*o*d*h*a*r*.net (WP 7.0.4) B Aug 18, 2026
v*m*s*l*n.com F Aug 18, 2026
p*r*a*v*n*a*e*i*c*e*.com (WP 7.0.3) D Aug 18, 2026
i*p*e*a*u*i*i*.com F Aug 18, 2026
l*a*c*r*i*g.com F Aug 18, 2026
o*e*a*i*n*m*l*i*r*.org (WP 7.0.4) F Aug 18, 2026
l*a*a*t*a*v*n*.com F Aug 18, 2026
v*m*s*i*j*r*a*s.com (WP 7.0.4) F Aug 18, 2026
p*r*o*r*l.com F Aug 18, 2026
c*n*r*l*p*r.com F Aug 18, 2026
p*r*o*r*a*i*.com F Aug 18, 2026
g*b*i*l*h*l*e*.com (WP 7.0.4) F Aug 18, 2026
v*m*s*s*u*a*f*s*c*.com F Aug 18, 2026
g*t*o*n*w*t*l*c*l*2*.com F Aug 18, 2026
p*r*o*m*g*c.com F Aug 18, 2026
a*v*r*i*.com F Aug 18, 2026
m*l*h*y*m.com (WP 7.0.4) F Aug 18, 2026
a*e*c*s*r*u*i*s.fr F Aug 18, 2026

Top 50 Plugins

Plugin Count
elementor 1,760,118
contact-form-7 1,742,101
elementor-pro 1,047,181
woocommerce 812,665
revslider 604,051
jetpack 451,880
js_composer 416,294
wp-rocket 339,670
essential-addons-for-elementor-lite 262,836
gravityforms 255,742
complianz-gdpr 254,832
google-site-kit 233,506
cookie-law-info 226,750
instagram-feed 222,906
sitepress-multilingual-cms 208,834
header-footer-elementor 204,824
google-analytics-for-wordpress 203,468
bluehost-wordpress-plugin 192,072
elementskit-lite 178,461
gutenberg 167,947
cookie-notice 147,375
litespeed-cache 145,395
gtranslate 123,216
wpforms-lite 122,195
the-events-calendar 121,489
gutenberg-core 114,394
astra-sites 111,774
popup-maker 108,702
woocommerce-payments 108,481
tablepress 101,840
honeypot 97,564
astra-addon 93,218
wp-smushit 90,037
duracelltomi-google-tag-manager 89,879
coblocks 89,528
layerslider 88,302
all-in-one-seo-pack 88,256
bb-plugin 86,137
akismet 84,352
premium-addons-for-elementor 83,377
ml-slider 82,371
cleantalk-spam-protect 81,743
mailchimp-for-wp 80,809
megamenu 79,808
woocommerce-gateway-stripe 78,751
jet-engine 77,522
ewww-image-optimizer 76,843
fusion-builder 76,486
wp-pagenavi 76,381
smart-slider-3 75,416

Top 50 Themes

Theme Count
hello-elementor 617,584
Divi 491,854
astra 411,197
flatsome 141,947
Avada 120,070
generatepress 114,235
pub 79,951
oceanwp 79,696
kadence 78,012
enfold 68,047
salient 64,554
twentyseventeen 54,053
bb-theme 52,880
twentytwentyfour 52,650
betheme 52,239
blocksy 50,589
cocoon-master 49,331
twentytwentyfive 45,345
dt-the7 45,193
woodmart 44,279
h4 39,858
neve 37,803
Avada-Child-Theme 36,773
gox 36,292
bridge 30,956
lightning 30,148
twentytwentyone 30,062
twentytwenty 28,565
swell 28,287
bricks 26,517
Impreza 25,874
Newspaper 24,121
twentytwentythree 21,927
epik-redesign 19,044
twentytwentytwo 18,652
uncode 18,281
twentysixteen 17,596
pro 17,526
storefront 16,224
sydney 16,098
Total 14,231
hello-theme-child-master 13,988
factory-templates-4 13,713
themify-ultra 12,877
hestia 12,472
yootheme 12,433
extendable 12,178
yith-wonder 12,005
porto 11,863
twentyfifteen 11,845