Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. add_action('after_setup_theme','remove_core_updates');
  2. function remove_core_updates()
  3. {
  4.  if(! current_user_can('update_core')){return;}
  5.  add_action('init', create_function('$a',"remove_action( 'init', 'wp_version_check' );"),2);
  6.  add_filter('pre_option_update_core','__return_null');
  7.  add_filter('pre_site_transient_update_core','__return_null');
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement