Skip to content

Instantly share code, notes, and snippets.

@lukecav
Last active October 1, 2019 16:54
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 lukecav/376e09d888ae43bb02b629e3ed70b5af to your computer and use it in GitHub Desktop.
Save lukecav/376e09d888ae43bb02b629e3ed70b5af to your computer and use it in GitHub Desktop.
Disable the PHP Update Admin Nag Widget
function disable_php_update_nag_widget() {
remove_meta_box( 'dashboard_php_nag', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'disable_php_update_nag_widget', 40);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment