How to Hide the "Use Any Font" Admin Menu

function plt_hide_use_any_font_menus() {
	//Hide the "Use Any Font" menu.
	remove_menu_page('use-any-font');
}

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

Where do I put this code?