Skip to content

Instantly share code, notes, and snippets.

@lukecav
Last active May 14, 2026 20:13
Show Gist options
  • Select an option

  • Save lukecav/9443b2abbb657c1da95f37ff8f828559 to your computer and use it in GitHub Desktop.

Select an option

Save lukecav/9443b2abbb657c1da95f37ff8f828559 to your computer and use it in GitHub Desktop.
Remove the Liquid Web software manager in wp-admin
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.