How to Hide the "Page scroll to id" Admin Menu

function plt_hide_page_scroll_to_id_menus() {
	//Hide the "Settings → Page scroll to id" menu.
	remove_submenu_page('options-general.php', 'page-scroll-to-id');
}

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

Where do I put this code?