Disable plugin update notification

Hardcoder du ændringer i et plugin, og vil undgå besked om updates, og derved ved et uheld for overskrevet dine ændringer?

Indsættes i den primære .php fil for det enkelte plugin.

/* update notification disabled */
add_filter('site_transient_update_plugins', 'dd_remove_update_nag');
function dd_remove_update_nag($value) {
 unset($value->response[ plugin_basename(__FILE__) ]);
 return $value;
}

Source: http://dd32.id.au/2011/03/01/disable-plugin-update-notification-for-a-specific-plugin-in-wordpress-3-1/

Leave a Reply

Your email address will not be published. Required fields are marked *