Skip to content

Instantly share code, notes, and snippets.

@trvswgnr
Created August 14, 2020 03:30
Show Gist options
  • Save trvswgnr/e329097a043a43ca9788008973235a10 to your computer and use it in GitHub Desktop.
Save trvswgnr/e329097a043a43ca9788008973235a10 to your computer and use it in GitHub Desktop.
WordPress disable updates for specific plugins
<?php
/**
* Disable updates for specied plugins.
*
* @param object $value Plugins update list.
*/
function taw_disable_specified_plugin_updates( $value ) {
unset( $value->response['some-plugin/some-plugin.php'] );
return $value;
}
add_filter( 'site_transient_update_plugins', 'taw_disable_specified_plugin_updates' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment