How to Hide the "Back To The Theme" Admin Menu

function plt_hide_back_to_the_theme_menus() {
	//Hide the "Tools → Back To The Theme" menu.
	remove_submenu_page('tools.php', 'back-to-the-theme');
}

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

Where do I put this code?