Tips on Customizing Simple URLs Legacy

How to Hide Simple URLs Legacy Admin Menus

function plt_hide_simple_urls_legacy_menus() {
	//Hide the "Simple URLs Legacy" menu.
	remove_menu_page('edit.php?post_type=surl');
	//Hide the "Simple URLs Legacy → Simple URLs Legacy" menu.
	remove_submenu_page('edit.php?post_type=surl', 'edit.php?post_type=surl');
	//Hide the "Simple URLs Legacy → Add New URL" menu.
	remove_submenu_page('edit.php?post_type=surl', 'post-new.php?post_type=surl');
}

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

Where do I put this code?

How to Hide the "URL Information" Meta Box

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

	//Hide the "URL Information" meta box.
	remove_meta_box('surl', $screen->id, 'normal');
}

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