How to Hide the "Shipbubble" Admin Menu

function plt_hide_shipbubble_menus() {
	//Hide the "Shipbubble" menu.
	remove_menu_page('shipbubble');
}

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

Where do I put this code?