Skip to content

Instantly share code, notes, and snippets.

@raphaelchaib
Created December 11, 2013 06:18
Show Gist options
  • Select an option

  • Save raphaelchaib/7905834 to your computer and use it in GitHub Desktop.

Select an option

Save raphaelchaib/7905834 to your computer and use it in GitHub Desktop.
WordPress: Remove update nag
<?php
// remove update nag
if ( !current_user_can( 'edit_users' ) ) {
add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ), 2 );
add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment