Skip to content

Instantly share code, notes, and snippets.

@Restoration
Created October 27, 2016 11:15
Show Gist options
  • Select an option

  • Save Restoration/3f0724c5b33f5d3a7d4eb6960d1ccbc7 to your computer and use it in GitHub Desktop.

Select an option

Save Restoration/3f0724c5b33f5d3a7d4eb6960d1ccbc7 to your computer and use it in GitHub Desktop.
WordPressのバージョンの更新を非表示
<?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