Created
December 21, 2013 09:34
-
-
Save SergSlon/8067312 to your computer and use it in GitHub Desktop.
Prevent a WordPress Plugin from Updating
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
| add_filter( 'http_request_args', 'dm_prevent_update_check', 10, 2 ); | |
| function dm_prevent_update_check( $r, $url ) { | |
| if ( 0 === strpos( $url, 'http://api.wordpress.org/plugins/update-check/' ) ) { | |
| $my_plugin = plugin_basename( __FILE__ ); | |
| $plugins = unserialize( $r['body']['plugins'] ); | |
| unset( $plugins->plugins[$my_plugin] ); | |
| unset( $plugins->active[array_search( $my_plugin, $plugins->active )] ); | |
| $r['body']['plugins'] = serialize( $plugins ); | |
| } | |
| return $r; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment