mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-24 05:09:10 +08:00
18 lines
388 B
PHP
18 lines
388 B
PHP
<?php
|
|
|
|
/*
|
|
* Plugin Name: Disable Easy Social Share Buttons plugin updates
|
|
* Plugin URI: https://github.com/szepeviktor/wordpress-website-lifecycle
|
|
*/
|
|
|
|
add_action(
|
|
'plugins_loaded',
|
|
static function () {
|
|
global $essb_manager;
|
|
if (method_exists($essb_manager, 'disableUpdates')) {
|
|
$essb_manager->disableUpdates(true);
|
|
}
|
|
},
|
|
10,
|
|
0
|
|
);
|