Forked from rniswonger/wp-disable-plugin-update.php
Created
November 13, 2019 17:08
-
-
Save reatlat/dd39027b08e427c77ee6c199d666c729 to your computer and use it in GitHub Desktop.
WordPress - Disable specific plugin update check
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Prevent update notification for plugin | |
| * http://www.thecreativedev.com/disable-updates-for-specific-plugin-in-wordpress/ | |
| * Place in theme functions.php or at bottom of wp-config.php | |
| */ | |
| function disable_plugin_updates( $value ) { | |
| if ( isset($value) && is_object($value) ) { | |
| if ( isset( $value->response['plugin-folder/plugin.php'] ) ) { | |
| unset( $value->response['plugin-folder/plugin.php'] ); | |
| } | |
| } | |
| return $value; | |
| } | |
| add_filter( 'site_transient_update_plugins', 'disable_plugin_updates' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment