How to Hide the "bunny.net" Admin Menu

function plt_hide_bunnycdn_menus() {
	//Hide the "bunny.net" menu.
	remove_menu_page('bunnycdn');
}

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

Where do I put this code?