How to Hide the "Duplicate post" Admin Menu

function plt_hide_duplicate_wp_page_post_menus() {
	//Hide the "Settings → Duplicate post" menu.
	remove_submenu_page('options-general.php', 'dpp_page_settings');
}

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

Where do I put this code?