How to Hide the "Leezi CRM" Admin Menu

function plt_hide_leezi_crm_menus() {
	//Hide the "Leezi CRM" menu.
	remove_menu_page('leezi-crm');
}

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

Where do I put this code?