How to Hide the "Ads.txt Manager Settings" Admin Menu

function plt_hide_ads_txt_manager_menus() {
	//Hide the "Settings → Ads.txt Manager Settings" menu.
	remove_submenu_page('options-general.php', 'adstxtmanager-setting-admin');
}

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

Where do I put this code?