Last active
May 14, 2026 20:13
-
-
Save lukecav/9443b2abbb657c1da95f37ff8f828559 to your computer and use it in GitHub Desktop.
Remove the Liquid Web software manager in wp-admin
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
| add_action( 'admin_menu', 'hide_liquid_web_licensing_menu_item', 999 ); | |
| function hide_liquid_web_licensing_menu_item() { | |
| remove_menu_page( 'lw-software-manager' ); | |
| } |
Comments are disabled for this gist.