Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created May 26, 2026 17:19
Show Gist options
  • Select an option

  • Save lukecav/2533ea764a38a111c1152f35fa57a71f to your computer and use it in GitHub Desktop.

Select an option

Save lukecav/2533ea764a38a111c1152f35fa57a71f to your computer and use it in GitHub Desktop.
Remove "Liquid Web Products" submenu from Settings in wp-admin
add_action( 'admin_menu', function () {
remove_submenu_page(
'options-general.php',
'lw-software-manager'
);
}, 999 );

Comments are disabled for this gist.