How to Hide the "Links Manager" Admin Menu

function plt_hide_smart_external_links_manager_menus() {
	//Hide the "Settings → Links Manager" menu.
	remove_submenu_page('options-general.php', 'smart_external_links_manager');
}

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

Where do I put this code?