mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-25 04:52:19 +08:00
22 lines
459 B
PHP
22 lines
459 B
PHP
<?php
|
|
|
|
/*
|
|
* Plugin Name: Disable SOGO Accessibility plugin (a11y) license check
|
|
* Plugin URI: https://github.com/szepeviktor/wordpress-website-lifecycle
|
|
*/
|
|
|
|
add_action(
|
|
'wp_ajax_check_license',
|
|
static function () {
|
|
add_filter(
|
|
'pre_http_request',
|
|
static function () {
|
|
return new \WP_Error('sogo_license_check_disabled');
|
|
},
|
|
0,
|
|
0
|
|
);
|
|
},
|
|
10,
|
|
0
|
|
);
|