WordPress maintenance or security needs? Reach out!
TLDWP

Plugin: wp-consent-api (Used by 52,978 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
p*r*m*n*.com (WP 7.0.4) F Aug 17, 2026
s*r*n*m*n*.com F Aug 17, 2026
s*r*n*m*s*a*a.com (WP 7.0.4) F Aug 17, 2026
c*e*r*a*d*n*.com (WP 7.0.4) B Aug 17, 2026
f*s*t*r*.net F Aug 17, 2026
p*r*m*d*u*.com (WP 7.0.4) B Aug 17, 2026
a*t*-*o*u*.de F Aug 17, 2026
d*g*t*l*u*o*o*y*3*.fr (WP 7.0.2) B Aug 17, 2026
i*a*e*b*r*e*u*.fr (WP 7.0.2) C Aug 17, 2026
g*r*a*y*o*u*g*i*e.com (WP 7.0.2) F Aug 17, 2026
i*z*h*n*e*s*e*t.de F Aug 17, 2026
n*k*s*k*u*t*a*.gr D Aug 17, 2026
c*l*a*i*.ch (WP 7.0.2) F Aug 17, 2026
s*r*i*s*e*p.com (WP 7.0.4) F Aug 17, 2026
w*s*l*.com (WP 7.0.4) B Aug 17, 2026
f*t*r*h*e*e*t*.com D Aug 17, 2026
p*r*m*x*i*m*.com (WP 6.1.12) F Aug 17, 2026
a*o*l*w.com D Aug 17, 2026
i*o*b*.us (WP 7.0.4) F Aug 17, 2026
i*o*b*.fr (WP 7.0.4) F Aug 17, 2026
i*o*b*.es (WP 7.0.4) F Aug 17, 2026
i*o*b*.it (WP 7.0.4) F Aug 17, 2026
i*o*b*.nl (WP 7.0.4) F Aug 17, 2026
i*o*b*.dk (WP 7.0.4) F Aug 17, 2026
i*o*b*.be (WP 7.0.4) F Aug 17, 2026
i*o*b*.de (WP 7.0.4) F Aug 17, 2026
i*o*b*.eu (WP 7.0.4) F Aug 17, 2026
n*p*n*i*.ua F Aug 17, 2026
l*v*e*d*n*e*k.de F Aug 17, 2026
s*r*i*c*m*l*t.com (WP 7.0.4) F Aug 17, 2026
m*g*o*-*n*i*e*r*.com (WP 7.0) F Aug 17, 2026
v*n*o*a*.hu (WP 7.0.4) C Aug 17, 2026
g*r*a*y*s*r*i*e.com F Aug 17, 2026
s*r*p*n*g.com (WP 7.0.4) F Aug 17, 2026
p*f*r*s*r*.com (WP 7.0.4) F Aug 17, 2026
w*s*e*k*p*e.com F Aug 17, 2026
d*l*c*o*s*s*o*i*s.de F Aug 17, 2026
i*i*a*u*d*n*e.es (WP 7.0.4) D Aug 17, 2026
s*r*c*v*.com F Aug 17, 2026
m*g*z*n*i*t.com (WP 7.0.4) F Aug 17, 2026
m*g*z*n*s*a*b*l.com (WP 7.0.4) F Aug 17, 2026
c*e*r*o*i*o*l*g*l*o*u*i*n*.com (WP 7.0.4) B Aug 17, 2026
j*l*h*n*k*c*t.de F Aug 17, 2026
g*r*a*v*s.com F Aug 17, 2026
c*l*b*e*s*6*.com (WP 7.0.2) F Aug 17, 2026
a*p*e.es F Aug 17, 2026
s*r*i*-*h*n*.com D Aug 17, 2026
t*e*.be (WP 6.9.7) F Aug 17, 2026
a*a*e*e*s*y*u.de (WP 7.0.4) F Aug 17, 2026
e*i*e*i*k.c*.za (WP 7.0.4) F Aug 17, 2026
p*d*s*g*b*i*d.com C Aug 17, 2026
m*s*a*h*n*s*g*i*o*e*.fr F Aug 17, 2026
b*u*h*m*e*.fr F Aug 17, 2026
b*r*a*k*.com F Aug 17, 2026
b*r*z*y*g*.com (WP 7.0.4) F Aug 17, 2026
s*i*h*w.in D Aug 17, 2026
a*n*e*.com D Aug 17, 2026
s*h*i*t*a*o*a*s.fr F Aug 17, 2026
s*l*t*c*.it (WP 7.0.4) F Aug 17, 2026
s*d*h*m*n*.com (WP 6.8.6) D Aug 17, 2026
s*r*n*a*s*a*e*.com (WP 6.5.10) F Aug 17, 2026
g*r*a*s*h*a.com F Aug 17, 2026
g*r*a*r*i*e*e*t*o*g*n*.com (WP 6.9.1) F Aug 17, 2026
p*r*l*a*w*.com F Aug 17, 2026
m*g*z*n*l*a*h*r.com (WP 7.0.4) F Aug 17, 2026
w*d*i*-*s*u*i.pl (WP 7.0.4) F Aug 17, 2026
i*a*o*p*i*g*r*c*m*g*o*n*.com (WP 7.0.4) F Aug 17, 2026
s*o*i*a*l.com D Aug 17, 2026
p*r*l*l*4*.com (WP 7.0.4) F Aug 17, 2026
s*r*i*g*d*e*o*s.com D Aug 17, 2026
f*x*d*r*c*d*v*r*e*e*v*c*.c*.uk A Aug 17, 2026
d*n*m*.io (WP 7.0.4) F Aug 17, 2026
c*e*r*r*e*c*u*t*c*m*g*o*n*.com (WP 7.0.4) F Aug 17, 2026
c*n*e*c*o*s*c*d*m*.org F Aug 17, 2026
e*f*n*n*i*l*e*v*c*s*h*u*h*g*l*e*y.ie C Aug 17, 2026
d*-*s*a*s*n*.in D Aug 17, 2026
s*i*n*e*t*d*e*.ro (WP 7.0.4) D Aug 17, 2026
d*e*d*s*l*i*.com (WP 7.0.4) F Aug 17, 2026
g*o*e*o.hu F Aug 17, 2026
f*d*l*u*.com F Aug 17, 2026
i*e*l*b*l.in (WP 7.0.4) D Aug 17, 2026
i*t*r*a*i*n*l*e*o*a*i*n*e*v*c*s.in (WP 7.0.4) F Aug 17, 2026
i*e*n*u*e.ae (WP 7.0.4) F Aug 17, 2026
b*b*d*p*.eu D Aug 17, 2026
j*d*c*n*u*t*n*.eu D Aug 17, 2026
m*r*o*i*a*e.hu D Aug 17, 2026
g*r*a*j*i*.com (WP 7.0.4) F Aug 17, 2026
w*s*p*o*n*.com F Aug 17, 2026
w*s*p*o*l*r*d*.com (WP 7.0.4) D Aug 17, 2026
m*g*t*c*s.com (WP 7.0.4) F Aug 17, 2026
w*-*e*i*n.de F Aug 17, 2026
g*c*c*u*i*g.org (WP 7.0.4) A Aug 17, 2026
m*e*h*s*s*e*s.com (WP 7.0.4) D Aug 17, 2026
s*t*l*s*e.mk (WP 7.0.4) F Aug 17, 2026
s*i*e*a*t.net (WP 7.0.4) D Aug 17, 2026
p*z*k*i*.com (WP 7.0.4) F Aug 17, 2026
p*z*c*b*r*u*k.com F Aug 17, 2026
w*s*s*l*s*n*.com F Aug 17, 2026
c*l*n*i*u*-*n*i*u*t*s.com D Aug 17, 2026
n*t*r*v*.nl A Aug 17, 2026

Top 50 Plugins

Plugin Count
elementor 1,763,072
contact-form-7 1,744,218
elementor-pro 1,048,783
woocommerce 813,977
revslider 605,223
jetpack 452,544
js_composer 417,093
wp-rocket 340,194
essential-addons-for-elementor-lite 263,304
gravityforms 256,003
complianz-gdpr 255,268
google-site-kit 233,550
cookie-law-info 227,154
instagram-feed 223,158
sitepress-multilingual-cms 209,283
header-footer-elementor 205,261
google-analytics-for-wordpress 203,825
bluehost-wordpress-plugin 192,279
elementskit-lite 178,903
gutenberg 167,885
cookie-notice 147,620
litespeed-cache 145,572
gtranslate 123,526
wpforms-lite 122,474
the-events-calendar 121,649
astra-sites 112,082
gutenberg-core 111,867
popup-maker 108,852
woocommerce-payments 108,658
tablepress 101,915
honeypot 97,643
astra-addon 93,337
wp-smushit 90,179
duracelltomi-google-tag-manager 90,068
coblocks 89,012
layerslider 88,495
all-in-one-seo-pack 88,336
bb-plugin 86,281
akismet 84,473
premium-addons-for-elementor 83,585
ml-slider 82,395
cleantalk-spam-protect 81,902
mailchimp-for-wp 80,959
megamenu 79,877
woocommerce-gateway-stripe 78,884
jet-engine 77,667
ewww-image-optimizer 76,783
fusion-builder 76,580
wp-pagenavi 76,388
smart-slider-3 75,555

Top 50 Themes

Theme Count
hello-elementor 618,557
Divi 492,566
astra 411,926
flatsome 141,855
Avada 120,231
generatepress 114,417
oceanwp 79,834
pub 78,203
kadence 78,137
enfold 68,181
salient 64,656
twentyseventeen 54,110
bb-theme 52,994
twentytwentyfour 52,680
betheme 52,320
blocksy 50,705
cocoon-master 49,217
twentytwentyfive 45,329
dt-the7 45,261
woodmart 44,284
h4 38,974
neve 37,865
Avada-Child-Theme 36,829
gox 36,324
bridge 31,028
twentytwentyone 30,097
lightning 30,069
twentytwenty 28,607
swell 28,181
bricks 26,546
Impreza 25,921
Newspaper 24,174
twentytwentythree 21,990
epik-redesign 19,056
twentytwentytwo 18,693
uncode 18,331
twentysixteen 17,596
pro 17,559
storefront 16,238
sydney 16,133
Total 14,236
hello-theme-child-master 14,013
factory-templates-4 13,703
themify-ultra 12,904
hestia 12,492
yootheme 12,446
extendable 12,300
yith-wonder 12,016
porto 11,889
twentyfifteen 11,882