Title: WP Consent API
Author: Rogier Lankhorst
Published: <strong>6. Februar 2020.</strong>
Last modified: 12. Mart 2026.

---

Search plugins

![](https://ps.w.org/wp-consent-api/assets/banner-772x250.png?rev=2239568)

![](https://ps.w.org/wp-consent-api/assets/icon-256x256.png?rev=2239568)

# WP Consent API

 By [Rogier Lankhorst](https://profiles.wordpress.org/rogierlankhorst/)

[Download](https://downloads.wordpress.org/plugin/wp-consent-api.2.0.1.zip)

 * [Details](https://me.wordpress.org/plugins/wp-consent-api/#description)
 * [Reviews](https://me.wordpress.org/plugins/wp-consent-api/#reviews)
 *  [Installation](https://me.wordpress.org/plugins/wp-consent-api/#installation)
 * [Development](https://me.wordpress.org/plugins/wp-consent-api/#developers)

 [Support](https://wordpress.org/support/plugin/wp-consent-api/)

## Description

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](https://github.com/rlankhorst/consent-api-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

 * [Abconsent Sirdata CMP](https://wordpress.org/plugins/sirdata-cmp/).
 * [Beautiful Cookie Consent Banner](https://wordpress.org/plugins/beautiful-and-responsive-cookie-consent/).
 * [Clickio Consent](https://wordpress.org/plugins/clickio-consent/)
 * [Complianz GDPR/CCPA](https://wordpress.org/plugins/complianz-gdpr/).
 * [Consent Studio](https://consent.studio/).
 * [consentmanager](https://wordpress.org/plugins/consent-manager/).
 * [Conzent](https://conzent.net/).
 * [Cookiebot](https://wordpress.org/plugins/cookiebot/).
 * [CookieFirst](https://wordpress.org/plugins/cookiefirst-gdpr-cookie-consent-banner/).
 * [CookieHub](https://wordpress.org/plugins/cookiehub/).
 * [CookieTractor](https://wordpress.org/plugins/cookietractor/).
 * [CookieYes – Cookie Banner for Cookie Consent](https://wordpress.org/plugins/cookie-law-info/).
 * [GDPR Cookie Compliance](https://wordpress.org/plugins/gdpr-cookie-compliance/).
 * [GDPR Cookie Consent Plugin – CCPA Ready](https://www.webtoffee.com/product/gdpr-cookie-consent/).
 * [GetTerms](https://getterms.io/consent-manager/).
 * [iubenda | All-in-one Compliance](https://wordpress.org/plugins/iubenda-cookie-law-solution/).
 * [Pressidium Cookie Consent](https://wordpress.org/plugins/pressidium-cookie-consent/).
 * [TrustArc Cookie Consent Manager](https://wordpress.org/plugins/trustarc-cookie-consent-manager/)

#### Consent Requiring Plugins

 * [AddToAny](https://wordpress.org/plugins/add-to-any/).
 * [AFL UTM Tracker Plugin](https://www.appfromlab.com/product/woocommerce-utm-tracker-plugin/).
 * [Burst Statistics](https://wordpress.org/plugins/burst-statistics/).
 * [Google Site Kit](https://wordpress.org/plugins/google-site-kit/).
 * [Pixel Manager for WooCommerce](https://wordpress.org/plugins/woocommerce-google-adwords-conversion-tracking-tag/).
 * [Woo](https://wordpress.org/plugins/woocommerce/).
 * [WP Statistics](https://wordpress.org/plugins/wp-statistics/).

### Demo site

[wpconsentapi.org](https://wpconsentapi.org/)
 Below are the plugins used to set
up the demo site:

 * Complianz
 * [The example plugin](https://github.com/rlankhorst/consent-api-example-plugin)

#### 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](https://github.com/WordPress/wp-consent-level-api)
as well!

## Installation

To install this plugin:

Download the plugin
 Upload the plugin to the wp-content/plugins directory, Go to„
plugins“ in your WordPress admin, then click activate.

## FAQ

### Does this plugin block third party services from placing cookies?

No, this plugin provides a framework through which plugins can know if they are 
allowed to place cookies or track user data.
 The plugin requires both a consent
management plugin for consent management and a plugin that follows the consent level
as can be read from this API.

### How should I go about integrating my plugin?

For each action that places cookies or tracks user data, you should consider what
type of tracking takes place. There are 5 consent categories:
 functional, statistics-
anonymous, statistics, preferences, marketing. These are explained below. Your code
should check if consent has been given for the applicable category. If no cookie
banner plugin is active, the Consent API will always return with consent (true).
Please check out the example plugin, and the above code examples.

### What is the difference between the consent categories?

Statistics:
 Cookies or any other form of local storage that are used exclusively
for statistical purposes (Analytics Cookies).

Statistics-anonymous:
 Cookies or any other form of local storage that are used 
exclusively for anonymous statistical purposes (Anonymous Analytics Cookies), that
are placed on a first party domain, and that do not allow identification of particular
individuals.

Marketing:
 Cookies or any other form of local storage required to create user profiles
to send advertising or to track the user on a website or across websites for similar
marketing purposes.

Functional:
 The cookie or any other form of local storage is used for the sole 
purpose of carrying out the transmission of a communication over an electronic communications
network;

OR

The technical storage or access is strictly necessary for the legitimate purpose
of enabling the use of a specific service explicitly requested by the subscriber
or user. If cookies are disabled, the requested functionality will not be available.
This makes them essential functional cookies.

Preferences:
 Cookies or any other form of local storage that can not be seen as
statistics, statistics-anonymous, marketing or functional, and where the technical
storage or access is necessary for the legitimate purpose of storing preferences.

## Reviews

![](https://secure.gravatar.com/avatar/88e6359d68a9a5cb853e2738b07ce5e831892e39667d786da1331d3a59df1300?
s=60&d=retro&r=g)

### 󠀁[Future of WP Consent Management](https://wordpress.org/support/topic/future-of-wp-consent-management/)󠁿

 [Brian Haas](https://profiles.wordpress.org/masteradhoc/) 1. Februar 2026.

The wp‑consent‑api plugin provides a clean, standardized way to manage user consent
across plugins and themes. It solves a core problem with a lightweight API. This
is definitely a feature that should be integrated into WordPress core to ensure 
consistent and compliant consent handling by default.

![](https://secure.gravatar.com/avatar/72d20e38966793032cc055e7e7563494b8f37cac5b26fc92fcd271bd57be5e28?
s=60&d=retro&r=g)

### 󠀁[Great Support Team](https://wordpress.org/support/topic/great-support-team-187/)󠁿

 [brightvesseldev](https://profiles.wordpress.org/brightvesseldev/) 25. Septembar
2024.

Louis was great helping me with an issue. Plugin works great and highly recommend!

 [ Read all 2 reviews ](https://wordpress.org/support/plugin/wp-consent-api/reviews/)

## Contributors & Developers

“WP Consent API” is open source software. The following people have contributed 
to this plugin.

Contributors

 *   [ Rogier Lankhorst ](https://profiles.wordpress.org/rogierlankhorst/)
 *   [ WordPress.org ](https://profiles.wordpress.org/wordpressdotorg/)
 *   [ Konstantinos Xenos ](https://profiles.wordpress.org/xkon/)
 *   [ Aurooba Ahmed ](https://profiles.wordpress.org/aurooba/)
 *   [ mujuonly ](https://profiles.wordpress.org/mujuonly/)
 *   [ Johan Holst Nielsen ](https://profiles.wordpress.org/phpgeekdk/)
 *   [ Mathieu Paapst ](https://profiles.wordpress.org/paapst/)
 *   [ Aert ](https://profiles.wordpress.org/aahulsebos/)
 *   [ pepe ](https://profiles.wordpress.org/pputzer/)
 *   [ Mark ](https://profiles.wordpress.org/markwolters/)
 *   [ Viktor Szépe ](https://profiles.wordpress.org/szepeviktor/)
 *   [ sjinks ](https://profiles.wordpress.org/sjinks/)

“WP Consent API” has been translated into 20 locales. Thank you to [the translators](https://translate.wordpress.org/projects/wp-plugins/wp-consent-api/contributors)
for their contributions.

[Translate “WP Consent API” into your language.](https://translate.wordpress.org/projects/wp-plugins/wp-consent-api)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/wp-consent-api/), check
out the [SVN repository](https://plugins.svn.wordpress.org/wp-consent-api/), or 
subscribe to the [development log](https://plugins.trac.wordpress.org/log/wp-consent-api/)
by [RSS](https://plugins.trac.wordpress.org/log/wp-consent-api/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 2.0.1

Fix: typo in ‘preferences’ category, causing comment cookies functionality to follow
functional category consent, props @sjinks

#### 2.0.0

 * New: Service-level consent API – allows granular consent control per service 
   in addition to category-based consent
 * New: `wp_has_service_consent()` function to check if a specific service has consent
 * New: `wp_is_service_denied()` function to check if a specific service is explicitly
   denied
 * New: `wp_set_service_consent()` function to set consent for a specific service
 * New: `wp_consent_service_changed` action hook fires when service consent changes
 * New: JavaScript functions `wp_has_service_consent()`, `wp_is_service_denied()`,
   and `wp_set_service_consent()`
 * New: JavaScript event `wp_consent_api_status_change_service` for service consent
   changes
 * Improvement: Added type hints throughout codebase for better code quality and
   IDE support
 * Improvement: Added `init()` method for cleaner plugin initialization
 * Security: escape logged notice in _doing_it_wrong function, props @mujuonly

#### 1.0.8

 * Updated tested up to
 * Dropped loading of translations, and loading of plugin_data, to prevent translation
   loading notices by WordPress 6.7, props @mujuonly
 * Dropped obsolete function wp_has_cookie_info, props @szepeviktor

#### 1.0.7

 * Tested up to

#### 1.0.6

 * Tested up to

#### 1.0.5

 * tested up to

#### 1.0.4

 * Improvement: only fire on change event if an actual change was detected on the
   consent.

#### 1.0.3

 * Fix: wp_has_consent function contained a condition which caused it to always 
   return true on serverside optin consent checks.

#### 1.0.2

 * Fix $collected_personal_data documentation, as $is_personal_data was deprecated(
   props @jazzsequence, https://github.com/rlankhorst/wp-consent-level-api/issues/
   54)
 * Fix the docblock so it reflects the actual value returned (props @jazzsequence,
   https://github.com/rlankhorst/wp-consent-level-api/issues/52)
 * Styling changes to site health
 * Code structure changes
 * Removed is_personal_data property, as it’s implicitly contained in the personaldata
   property
 * Made cookie prefix filterable props @jazzsequence

#### 1.0.1

 * Cookiebot added as existing integration
 * Some small improvements to comply with WordPress coding styles

#### 1.0.0

 * changed consent_api_setcookie into consent_api_set_cookie for naming consistency
   with the getcookie method
 * added prefix in javascript set and get methods, to be compatible with PHP cookies,
   props @phpgeek
 * removed duplicate statistics category, props @phpgeek

## Community plugin

This plugin is developed and supported by a community. [Contribute to this plugin](https://github.com/wordpress/wp-consent-level-api)

## Meta

 *  Version **2.0.1**
 *  Last updated **1 month ago**
 *  Active installations **200.000+**
 *  WordPress version ** 5.0 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 7.4 or higher **
 *  Languages
 * [Catalan](https://ca.wordpress.org/plugins/wp-consent-api/), [Chinese (Taiwan)](https://tw.wordpress.org/plugins/wp-consent-api/),
   [Dutch](https://nl.wordpress.org/plugins/wp-consent-api/), [Dutch (Belgium)](https://nl-be.wordpress.org/plugins/wp-consent-api/),
   [English (Australia)](https://en-au.wordpress.org/plugins/wp-consent-api/), [English (Canada)](https://en-ca.wordpress.org/plugins/wp-consent-api/),
   [English (New Zealand)](https://en-nz.wordpress.org/plugins/wp-consent-api/),
   [English (South Africa)](https://en-za.wordpress.org/plugins/wp-consent-api/),
   [English (UK)](https://en-gb.wordpress.org/plugins/wp-consent-api/), [English (US)](https://wordpress.org/plugins/wp-consent-api/),
   [French (France)](https://fr.wordpress.org/plugins/wp-consent-api/), [Galician](https://gl.wordpress.org/plugins/wp-consent-api/),
   [German](https://de.wordpress.org/plugins/wp-consent-api/), [Norwegian (Bokmål)](https://nb.wordpress.org/plugins/wp-consent-api/),
   [Polish](https://pl.wordpress.org/plugins/wp-consent-api/), [Portuguese (Brazil)](https://br.wordpress.org/plugins/wp-consent-api/),
   [Russian](https://ru.wordpress.org/plugins/wp-consent-api/), [Spanish (Chile)](https://cl.wordpress.org/plugins/wp-consent-api/),
   [Spanish (Spain)](https://es.wordpress.org/plugins/wp-consent-api/), [Swedish](https://sv.wordpress.org/plugins/wp-consent-api/),
   and [Ukrainian](https://uk.wordpress.org/plugins/wp-consent-api/).
 *  [Translate into your language](https://translate.wordpress.org/projects/wp-plugins/wp-consent-api)
 * Tags
 * [api](https://me.wordpress.org/plugins/tags/api/)[compliance](https://me.wordpress.org/plugins/tags/compliance/)
   [consent](https://me.wordpress.org/plugins/tags/consent/)[cookies](https://me.wordpress.org/plugins/tags/cookies/)
   [privacy](https://me.wordpress.org/plugins/tags/privacy/)
 *  [Advanced View](https://me.wordpress.org/plugins/wp-consent-api/advanced/)

## Ratings

 5 out of 5 stars.

 *  [  2 5-star reviews     ](https://wordpress.org/support/plugin/wp-consent-api/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/wp-consent-api/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/wp-consent-api/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/wp-consent-api/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/wp-consent-api/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/wp-consent-api/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/wp-consent-api/reviews/)

## Contributors

 *   [ Rogier Lankhorst ](https://profiles.wordpress.org/rogierlankhorst/)
 *   [ WordPress.org ](https://profiles.wordpress.org/wordpressdotorg/)
 *   [ Konstantinos Xenos ](https://profiles.wordpress.org/xkon/)
 *   [ Aurooba Ahmed ](https://profiles.wordpress.org/aurooba/)
 *   [ mujuonly ](https://profiles.wordpress.org/mujuonly/)
 *   [ Johan Holst Nielsen ](https://profiles.wordpress.org/phpgeekdk/)
 *   [ Mathieu Paapst ](https://profiles.wordpress.org/paapst/)
 *   [ Aert ](https://profiles.wordpress.org/aahulsebos/)
 *   [ pepe ](https://profiles.wordpress.org/pputzer/)
 *   [ Mark ](https://profiles.wordpress.org/markwolters/)
 *   [ Viktor Szépe ](https://profiles.wordpress.org/szepeviktor/)
 *   [ sjinks ](https://profiles.wordpress.org/sjinks/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/wp-consent-api/)