How to Hide the "LWSCache" Admin Menu

function plt_hide_lwscache_menus() {
	//Hide the "LWSCache" menu.
	remove_menu_page('options-general.php?page=nginx');
}

add_action('admin_menu', 'plt_hide_lwscache_menus', 11);

Where do I put this code?