Created
October 27, 2021 00:12
-
-
Save Hansanghyeon/9a8a6d90fe3cb8587a86045cf28e490f to your computer and use it in GitHub Desktop.
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
<?php | |
/** | |
* Prevent update notification for plugin - | |
* http://www.thecreativedev.com/disable-updates-for-specific-plugin-in-wordpress/ | |
* Add to the core plugin file | |
*/ | |
function disable_plugin_updates( $value ) { | |
if ( isset($value) && is_object($value) ) { | |
$plugin_file_name = basename(__DIR__) . '/' . basename(__FILE__); | |
if ( isset( $value->response[$plugin_file_name] ) ) { | |
unset( $value->response[$plugin_file_name] ); | |
} | |
} | |
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