How to Hide the "Mention Links" Admin Menu

function plt_hide_mention_links_menus() {
	//Hide the "Settings → Mention Links" menu.
	remove_submenu_page('options-general.php', 'wp-mention-links');
}

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

Where do I put this code?