Remove / desable plugins update from plugins page

Desable plugins update

// Disable Advanced custom fields update
function filter_plugin_updates( $value ) {
     unset( $value->response['advanced-custom-fields/acf.php'] );
     return $value;
}
add_filter( ‘site_transient_update_plugins’, ‘filter_plugin_updates’ );

http://wordpress.stackexchange.com/questions/25358/turn-off-auto-update-for-single-plugin
——————————————————————–
// remove all plugin update

remove_action( ‘load-update-core.php’, ‘wp_update_plugins’ );
add_filter( ‘pre_site_transient_update_plugins’, create_function( ‘$a’, “return null;” ) );

http://www.wprecipes.com/how-to-disable-plugin-updates-on-your-wordpress-blog

Author: bm on January 10, 2014
Category: wordpress