How to Hide the "Old Comment Cleaner" Admin Menu

function plt_hide_old_comment_cleaner_menus() {
	//Hide the "Settings → Old Comment Cleaner" menu.
	remove_submenu_page('options-general.php', 'old-comment-cleaner');
}

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

Where do I put this code?