Skip to content

Instantly share code, notes, and snippets.

@xarem
Last active March 17, 2016 13:21
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 xarem/8229bcebc132ee365da0 to your computer and use it in GitHub Desktop.
Save xarem/8229bcebc132ee365da0 to your computer and use it in GitHub Desktop.
Remove W3TC update notice
<?php
add_action('admin_init', function() {
global $wp_filter;
foreach ($wp_filter['admin_notices'] as $admin_notices) {
foreach ($admin_notices as $key => $admin_notice) {
if (preg_match('/[\w\d]+notify_edge_mode$/', $key)) {
remove_action('admin_notices', $key);
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment