Tips on Customizing WP Duplicate Page

How to Hide the "Duplicate Page" Admin Menu

function plt_hide_wp_duplicate_page_menus() {
	//Hide the "Settings → Duplicate Page" menu.
	remove_submenu_page('options-general.php', 'wp-duplicate-page-settings');
}

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

Where do I put this code?

How to Hide the "Recommended" Dashboard Widget

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

	//Remove the "Recommended" widget.
	remove_meta_box('dashboard_widget', 'dashboard', 'normal');
}

add_action('wp_dashboard_setup', 'plt_hide_wp_duplicate_page_dashboard_widgets', 20);