/ Published in: PHP
Adding this snippet to the functions.php of your wordpress theme will disable the upgrade notification / warning displayed within the wordpress admin in version 3.2.
Expand |
Embed | Plain Text
function disable_browser_upgrade_warning() { remove_meta_box( 'dashboard_browser_nag', 'dashboard', 'normal' ); } add_action( 'wp_dashboard_setup', 'disable_browser_upgrade_warning' );
You need to login to post a comment.
