Skip to content

Instantly share code, notes, and snippets.

@ajitbohra
Last active January 28, 2016 09:20
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 ajitbohra/a369ce57ed43c7eff81e to your computer and use it in GitHub Desktop.
Save ajitbohra/a369ce57ed43c7eff81e to your computer and use it in GitHub Desktop.
Removing wootheme update nag
<?php
/**
* Remove the WooThemes Helper plugin nag on admin screen
*/
add_action( 'init', 'lubus_remove_woo_nag' );
function lubus_remove_woo_nag() {
remove_action( 'admin_notices', 'woothemes_updater_notice' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment