How to Hide the "Robots.txt Options" Admin Menu

function plt_hide_robotstxt_rewrite_menus() {
	//Hide the "Settings → Robots.txt Options" menu.
	remove_submenu_page('options-general.php', 'robots-txt-options');
}

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

Where do I put this code?