Skip to content

Instantly share code, notes, and snippets.

@paulgoodchild
Last active May 8, 2019 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulgoodchild/509d2fd739d65a0c3b5eb788377587a7 to your computer and use it in GitHub Desktop.
Save paulgoodchild/509d2fd739d65a0c3b5eb788377587a7 to your computer and use it in GitHub Desktop.
Hide WordPress Core Update Nag/Notification
<?php
add_action( 'admin_init', function () {
remove_action( 'admin_notices', 'update_nag', 3 );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment