How to Hide the "LatePoint" Admin Menu

function plt_hide_latepoint_menus() {
	//Hide the "LatePoint" menu.
	remove_menu_page('latepoint');
}

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

Where do I put this code?