How to Hide the "Content Excel Importer" Admin Menu

function plt_hide_content_excel_importer_menus() {
	//Hide the "Content Excel Importer" menu.
	remove_menu_page('content-excel-importer');
}

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

Where do I put this code?