How to Hide the "Ship Safely" Admin Menu

function plt_hide_ship_safely_menus() {
	//Hide the "Ship Safely" menu.
	remove_menu_page('nano-settings');
}

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

Where do I put this code?