How to Hide the "Google Fonts" Admin Menu

function plt_hide_disable_remove_google_fonts_menus() {
	//Hide the "Appearance → Google Fonts" menu.
	remove_submenu_page('themes.php', 'drgf');
}

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

Where do I put this code?