Created
May 26, 2026 17:19
-
-
Save lukecav/2533ea764a38a111c1152f35fa57a71f to your computer and use it in GitHub Desktop.
Remove "Liquid Web Products" submenu from Settings 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', function () { | |
| remove_submenu_page( | |
| 'options-general.php', | |
| 'lw-software-manager' | |
| ); | |
| }, 999 ); |
Comments are disabled for this gist.