Skip to content

Instantly share code, notes, and snippets.

@gegeriyadi
Created October 5, 2015 11:56
Show Gist options
  • Save gegeriyadi/a623dd01b947ded51001 to your computer and use it in GitHub Desktop.
Save gegeriyadi/a623dd01b947ded51001 to your computer and use it in GitHub Desktop.
add_action ( 'after_setup_theme' , 'remove_core_updates' );
function remove_core_updates ()
{
if (! current_user_can ( 'update_core' )){ return ;}
add_action ( 'init' , create_function ( '$a' , "remove_action( 'Init', 'wp_version_check' );" ), 2 );
add_filter ( 'pre_option_update_core' , '__return_null' );
add_filter ( 'pre_site_transient_update_core' , '__return_null' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment