Skip to content

Instantly share code, notes, and snippets.

@traeblain
Created July 20, 2011 04:26
Show Gist options
  • Save traeblain/1094336 to your computer and use it in GitHub Desktop.
Save traeblain/1094336 to your computer and use it in GitHub Desktop.
Remove WPMU's Horribly Useless Notification Plugin Nag
<?php
/*
Plugin Name: Remove WPMU Notification Plugin Nag
Plugin URI: http://wp.me/p1Aj2B-6g
Description: WPMU started trying to force people that use plugins by their developers to install a Notification plugin by making a persistent notification bug the admins. This removes that annoying piece.
Version: 1.2
Author: Trae Blain
Author URI: http://traeblain.com
License: GPL2
*/
if ( function_exists( 'wdp_un_check' ) ) {
remove_action( 'admin_notices', 'wdp_un_check', 5 );
remove_action( 'network_admin_notices', 'wdp_un_check', 5 );
}
class WPMUDEV_Update_Notifications {};
class WPMUDEV_Dashboard_Notice {};
?>
@TeaMike
Copy link

TeaMike commented Sep 13, 2013

Hey guys.. just wanted to point you to the (stripped-down, working in WP 3.6.1) plugin for this function:
http://wordpress.org/plugins/wpmu-no-nag/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment