How to Hide the "Navigation Menus" Meta Box

function plt_hide_navception_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "Navigation Menus" meta box.
	remove_meta_box('add-nav_menu', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_navception_metaboxes', 20);

Where do I put this code?