WordPress 3.7 を使用。
不具合や仕様変更などで新しいバージョンに更新したくないなどの理由で特定のプラグインに関しての更新通知を出したくない場合、functions.php(Themify のテーマ使用時は custom-functions.php)に以下を追記する。
1 2 3 4 5 6 7 8 9 10 11 12 |
add_filter('site_transient_update_plugins', 'custom_site_transient_update_plugins'); function custom_site_transient_update_plugins($value) { $ignore_plugins = array( 'quick-cache/quick-cache.php' ); foreach ($ignore_plugins as $ignore_plugin) { if (isset($value->response[$ignore_plugin])) { unset($value->response[$ignore_plugin]); } } return $value; } |
3~5行目で、更新通知を止めたいプラグインのメインファイルまでのパスを「wp-content/plugins/」からの相対パスで指定する(複数のプラグインを指定する前提で配列にしてある)。今回は例として Quick Cache の更新通知を出さないようにしている。