Created
April 19, 2017 14:03
-
-
Save chriswagoner/de7b89753641cc7f05ab2050da2c1e71 to your computer and use it in GitHub Desktop.
WooThemes Updater Admin Nag Remove
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Remove the WooThemes Helper notice from the admin | |
| add_action( 'init', 'uw_remove_woothemes_helper_nag' ); | |
| function uw_remove_woothemes_helper_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