How to Hide the "Suggest Edits and Comments" Admin Menu

function plt_hide_suggest_edits_and_comments_menus() {
	//Hide the "Settings → Suggest Edits and Comments" menu.
	remove_submenu_page('options-general.php', 'suggest-edits-and-comments-settings');
}

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

Where do I put this code?