Questions? Feedback? powered by Olark live chat software
Monthly Archives: May 2014

WordPress to disable plugin update notification

add_filter(‘site_transient_update_plugins’, ‘dd_remove_update_nag’); function dd_remove_update_nag($value) { unset($value->response[ plugin_basename(__FILE__) ]); return $value; }

Posted in Docs & Training