Skip to content

Instantly share code, notes, and snippets.

@viktorbijlenga
Created September 30, 2013 10:55
Show Gist options
  • Save viktorbijlenga/6762169 to your computer and use it in GitHub Desktop.
Save viktorbijlenga/6762169 to your computer and use it in GitHub Desktop.
Hide Wordpress update message on production server.
// Hide update nag on the production server
$production = 'http://PRODUCTIONURL.com';
$check_url = home_url();
function hideUpdateNag() {
remove_action( 'admin_notices', 'update_nag', 3 );
}
if ( $production == $check_url ) {
add_action('admin_menu','hideUpdateNag');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment