How to Hide the "WP Reset" Admin Menu

function plt_hide_wp_reset_menus() {
	//Hide the "Tools → WP Reset" menu.
	remove_submenu_page('tools.php', 'wp-reset');
}

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

Where do I put this code?