How to Hide the "Suggest Comments" Admin Menu

function plt_hide_suggest_comments_menus() {
	//Hide the "Settings → Suggest Comments" menu.
	remove_submenu_page('options-general.php', 'suggestcomments.php');
}

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

Where do I put this code?