Files
2026-04-28 15:13:50 +02:00

19 lines
308 B
PHP

<?php
/**
* WPConsent Lite.
*
* @package WPConsent
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Get the main instance of WPConsent.
*
* @return WPConsent
*/
function wpconsent() {// phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
return WPConsent::instance();
}