Created
October 27, 2016 11:15
-
-
Save Restoration/3f0724c5b33f5d3a7d4eb6960d1ccbc7 to your computer and use it in GitHub Desktop.
WordPressのバージョンの更新を非表示
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 | |
| // バージョン更新を非表示にする | |
| add_filter('pre_site_transient_update_core', '__return_zero'); | |
| // APIによるバージョンチェックの通信をさせない | |
| remove_action('wp_version_check', 'wp_version_check'); | |
| remove_action('admin_init', '_maybe_update_core'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment