How to Hide the "Lightbox" Admin Menu

function plt_hide_easy_fancybox_menus() {
	//Hide the "Lightbox" menu.
	remove_menu_page('firelight-settings');
}

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

Where do I put this code?