How to Hide the "AWLD Linked Data" Admin Menu

function plt_hide_ancient_world_linked_data_for_wordpress_menus() {
	//Hide the "Settings → AWLD Linked Data" menu.
	remove_submenu_page('options-general.php', 'wp-awld-js-settings');
}

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

Where do I put this code?