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

21 lines
379 B
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) {
return;
}
/**
* Compatibility with woocommerce-checkout-manager-pro 6.x
*/
function WOOCCM() {
return Quadlayers\WOOCCM\WOOCCM();
}
/**
* Compatibility with WordPress < 6.5
*/
if ( ! function_exists( 'wp_is_serving_rest_request' ) ) {
function wp_is_serving_rest_request() {
return defined( 'REST_REQUEST' ) && REST_REQUEST;
}
}