How to Hide the "Recent Comments" Admin Menu

function plt_hide_get_recent_comments_menus() {
	//Hide the "Settings → Recent Comments" menu.
	remove_submenu_page('options-general.php', 'get-recent-comments.php');
}

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

Where do I put this code?