How to Hide the "Font Audit" Admin Menu

function plt_hide_disable_remove_google_fonts_menus() {
	//Hide the "Font Audit" menu.
	remove_menu_page('drgf');
}

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

Where do I put this code?