How to Hide Sandbox Site powered by Playground Admin Menus

function plt_hide_playground_menus() {
	//Hide the "Tools → Sandbox Site" menu.
	remove_submenu_page('tools.php', 'playground');
	//Hide the "Sandbox Site (experimental)" menu.
	remove_menu_page('playground_redirect');
}

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

Where do I put this code?