T-Mobile Netz 0151 0160 0170 0171 0175 - 13Vodafone Netz 01520 01522 0162 0172 0172…
Remove Update Notification for specific plugin
This seems to work only if the plugin is active. but this is ok for me.
function remove_update_notification($value) {
//unset($value->response[ plugin_basename(__FILE__) ]); //when usin in plugin itself
//if( isset( $value->response['facebook-comments-plugin/facebook-comments.php'] ) ) {
unset( $value->response['organization-chart/wpdevart_chart.php'] );
//}
return $value;
}
add_filter('site_transient_update_plugins', 'remove_update_notification');
