How to Hide the "SVG Support" Admin Menu

function plt_hide_svg_support_menus() {
	//Hide the "Settings → SVG Support" menu.
	remove_submenu_page('options-general.php', 'svg-support');
}

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

Where do I put this code?