How to Hide the "SVG Icons" Admin Menu

function plt_hide_shp_icon_menus() {
	//Hide the "Appearance → SVG Icons" menu.
	remove_submenu_page('themes.php', 'shp-icon');
}

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

Where do I put this code?