How to Hide the "GothAmazon" Admin Menu

function plt_hide_gothamazon_menus() {
	//Hide the "GothAmazon" menu.
	remove_menu_page('gothamazon-plugin');
}

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

Where do I put this code?