WordPress maintenance or security needs? Reach out!
TLDWP

Plugin: wp-consent-api (Used by 52,991 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
a*r*.c*.il (WP 7.1) F Aug 20, 2026
c*n*f*r*.eu (WP 7.1) F Aug 20, 2026
c*n*f*r*.es (WP 7.1) F Aug 20, 2026
l*c*.ai D Aug 20, 2026
s*a*i*t*k*k*d*m*n.se F Aug 20, 2026
i*d*v*z.com F Aug 20, 2026
b*s*e*l*n*a.com F Aug 20, 2026
l*h*g*l*w*i*m.com F Aug 20, 2026
l*r*r*n*t*t*t*t.se F Aug 20, 2026
r*s*a*-*h*r*n*c*e*t*o*.fr D Aug 20, 2026
i*i*y.vn (WP 7.1) F Aug 20, 2026
e*s*o*b*z.com B Aug 20, 2026
l*r*n*o*n*e*i*i*o*c*i*.it F Aug 20, 2026
l*r*n*i*a.es (WP 7.0.4) F Aug 20, 2026
l*h*l*b*x*n*.com (WP 7.0.4) F Aug 20, 2026
g*m*b*h*a.com F Aug 20, 2026
c*i*n*s*p.com (WP 7.0.4) F Aug 20, 2026
a*o*t*o*s*a.com F Aug 20, 2026
c*m*o*i*e*a*l*t.com (WP 7.1) F Aug 20, 2026
p*r*e*t*m*l*-*e*t*l.com F Aug 20, 2026
r*u*a*a*.fi (WP 7.0.4) F Aug 20, 2026
m*b*d*s*o*k.fr (WP 7.0.4) F Aug 20, 2026
k*a*p*t*.de (WP 7.0.4) F Aug 20, 2026
g*m*s*u*u*.com (WP 7.0.4) D Aug 20, 2026
e*s*2*a*.com (WP 7.0.4) F Aug 20, 2026
l*p*n*a*e*n*s*o*t*r*.fi (WP 7.1) F Aug 20, 2026
i*d*c*r*l*i*.com F Aug 20, 2026
l*g*i*e*a*u*o.com (WP 7.0.4) D Aug 20, 2026
a*o*a*r*t*s.com (WP 7.0.4) F Aug 20, 2026
l*p*n*e*a.at D Aug 20, 2026
r*o*i*g*n*r*v*r*.com (WP 7.1) F Aug 20, 2026
a*o*a*e*q*i*a.com (WP 6.8.8) F Aug 20, 2026
a*o*a*t*c*.com (WP 7.1) F Aug 20, 2026
s*e*t*o*d.com (WP 7.0.4) D Aug 20, 2026
g*m*a*e*h*s*.com F Aug 20, 2026
s*e*t*r*e*d*.com (WP 7.0.4) F Aug 20, 2026
a*o*a*e*r*t*s.com (WP 7.0.4) F Aug 20, 2026
m*t*k.lv (WP 7.0.4) F Aug 20, 2026
c*e*n*i*e*p*o*e*t.de F Aug 20, 2026
p*r*e*t*r*y.com F Aug 20, 2026
a*n*a*r*-*o*t*e*r*e*.fr F Aug 20, 2026
c*n*e*s*o*a*t*.pl (WP 7.1) F Aug 20, 2026
t*m*a*a*a*i*n*.com F Aug 20, 2026
i*d*s*e*t.com (WP 7.0.4) F Aug 20, 2026
i*d*s*v*n*.com (WP 7.0.4) F Aug 20, 2026
m*t*k.lt (WP 7.0.4) F Aug 20, 2026
s*e*t*c*n*l*g*e*.com (WP 7.0.4) F Aug 20, 2026
e*r*h*c*n*e*.com (WP 7.0.2) F Aug 20, 2026
c*p*a*l*a*.fr F Aug 20, 2026
i*f*-*n*u*t*i*l*e.fr D Aug 20, 2026
a*e*i*a*m*u*t*i*s*h*o*.com (WP 7.0.4) F Aug 20, 2026
s*o*e*k*l*a*a*t*.com (WP 7.0.4) F Aug 20, 2026
l*g*a*d*a*.com (WP 7.0.4) C Aug 20, 2026
p*o*i*d*e*o.com C Aug 20, 2026
p*o*i*d*.com C Aug 20, 2026
m*-*o*s*i*s.com (WP 7.0.4) F Aug 20, 2026
a*g*r*a*z*.org D Aug 20, 2026
n*o*r*x*s.mx (WP 7.1) F Aug 20, 2026
c*a*r*a*s*o*.com (WP 7.0.2) F Aug 20, 2026
c*m*o*a*.com F Aug 20, 2026
m*-*l*i*s.com (WP 7.0.4) F Aug 20, 2026
s*c*r*v*b*.de (WP 6.9.7) F Aug 20, 2026
l*g*a*d*a*t*n*.com (WP 7.0.4) F Aug 20, 2026
l*g*a*d*a*a*h*n.com (WP 7.0.4) F Aug 20, 2026
m*-*n*o*i*g.com (WP 7.0.4) F Aug 20, 2026
g*o*x*g*a*h*t*l*.ch F Aug 20, 2026
v*l*m*n*s*a.fi (WP 6.9.7) D Aug 20, 2026
d*n*t*c*a*p*r*.com (WP 7.0.4) F Aug 20, 2026
e*r*h*o*k*l*n*s*a*i*g.com (WP 6.7.7) F Aug 20, 2026
l*n*m*c*.dk (WP 7.0.4) F Aug 20, 2026
p*r*e*t*a*n*p*o.com (WP 7.0.2) F Aug 20, 2026
a*e*a*e*a*.com F Aug 20, 2026
l*g*l*n*i*n*w*o*k.com F Aug 20, 2026
l*g*l*n*i*f*o*i*a.com D Aug 20, 2026
a*e*t*e*s.com (WP 7.0.4) F Aug 20, 2026
a*o*d*l*c*r*c*a*l*c.com B Aug 20, 2026
s*e*i*i*i*e*a*y.com D Aug 20, 2026
s*v*n*e*t.id (WP 6.9.7) F Aug 20, 2026
b*t*s*f*w*r*s.c*m.br F Aug 20, 2026
l*n*g*s*h*f*e*l*r.de (WP 7.0.4) F Aug 20, 2026
g*m*n*t*g.com F Aug 20, 2026
p*r*e*t*y*o*c*.com (WP 7.0.4) F Aug 20, 2026
a*e*i*a*-*e*o*e*i*g.com (WP 7.1) F Aug 20, 2026
u*-*a*s.be F Aug 20, 2026
a*o*d*n*s*a*e*a*e.com F Aug 20, 2026
i*d*s*r*s*m.com (WP 7.1) D Aug 20, 2026
i*d*s*r*p*i*t.com (WP 7.1) F Aug 20, 2026
s*e*e*s*a*e.com F Aug 20, 2026
a*e*o*o*s*l*o*i*.com F Aug 20, 2026
p*o*i*a*i*n*.com (WP 7.0.4) D Aug 20, 2026
b*y*a*t*.it (WP 7.0.4) F Aug 20, 2026
c*c*u*c*.com D Aug 20, 2026
b*o*t*a*i*a.com (WP 7.1) F Aug 20, 2026
k*u*p*d*o*n*k*w.com D Aug 20, 2026
l*g*t*o*t*.com C Aug 20, 2026
o*t*x*.fr F Aug 20, 2026
d*a*t*s*s*f*r*.c*.uk (WP 7.0.4) F Aug 20, 2026
s*e*a*i*-*l*b*l.com (WP 7.0.4) A Aug 20, 2026
c*m*l*a*c*a*d*i*k*.com F Aug 20, 2026
c*m*l*a*c*-*o*m*.com (WP 6.9.7) F Aug 20, 2026

Top 50 Plugins

Plugin Count
elementor 1,753,852
contact-form-7 1,736,606
elementor-pro 1,043,865
woocommerce 810,007
revslider 601,516
jetpack 450,352
js_composer 414,520
wp-rocket 337,633
essential-addons-for-elementor-lite 261,693
gravityforms 255,069
complianz-gdpr 254,127
google-site-kit 233,703
cookie-law-info 226,099
instagram-feed 222,142
sitepress-multilingual-cms 208,196
header-footer-elementor 203,849
google-analytics-for-wordpress 202,621
bluehost-wordpress-plugin 191,641
elementskit-lite 177,363
gutenberg 168,236
cookie-notice 146,836
litespeed-cache 145,426
gtranslate 122,710
gutenberg-core 121,539
wpforms-lite 121,504
the-events-calendar 121,275
astra-sites 111,148
popup-maker 108,269
woocommerce-payments 108,083
tablepress 101,727
honeypot 97,517
astra-addon 92,823
coblocks 91,407
duracelltomi-google-tag-manager 89,706
wp-smushit 89,643
layerslider 87,915
all-in-one-seo-pack 87,742
bb-plugin 85,912
akismet 84,048
premium-addons-for-elementor 82,834
ml-slider 82,184
cleantalk-spam-protect 81,414
mailchimp-for-wp 80,433
megamenu 79,566
jet-engine 77,334
woocommerce-gateway-stripe 76,961
ewww-image-optimizer 76,739
wp-pagenavi 76,285
fusion-builder 76,257
smart-slider-3 75,102

Top 50 Themes

Theme Count
hello-elementor 615,939
Divi 490,194
astra 409,302
flatsome 142,665
Avada 119,794
generatepress 113,816
pub 84,650
oceanwp 79,304
kadence 77,923
enfold 67,818
salient 64,374
twentyseventeen 53,892
bb-theme 52,683
twentytwentyfour 52,654
betheme 52,139
blocksy 50,392
cocoon-master 49,092
twentytwentyfive 45,392
dt-the7 45,028
woodmart 44,453
h4 42,371
neve 37,632
Avada-Child-Theme 36,719
gox 36,221
bridge 30,791
lightning 30,036
twentytwentyone 29,970
twentytwenty 28,443
swell 28,180
bricks 26,588
Impreza 25,846
Newspaper 24,083
twentytwentythree 21,825
epik-redesign 19,009
twentytwentytwo 18,562
uncode 18,258
twentysixteen 17,581
pro 17,465
storefront 16,125
sydney 16,015
Total 14,205
hello-theme-child-master 13,919
factory-templates-4 13,774
themify-ultra 12,862
hestia 12,445
yootheme 12,407
yith-wonder 11,954
extendable 11,892
porto 11,804
twentyfifteen 11,775