Disable plugin update



Add this code in your plugin root file.

/*
* Disable update
*/
add_filter('site_transient_update_plugins', function($value) {
if( ! is_object($value) ) return $value;
unset( $value->response[ plugin_basename(__FILE__) ] );
return $value;
});
Метки: нет меток

Обсуждение закрыто.