How to Hide the "PayPal for Divi" Admin Menu

function plt_hide_angelleye_paypal_for_divi_menus() {
	//Hide the "Settings → PayPal for Divi" menu.
	remove_submenu_page('options-general.php', 'angelleye-paypal-divi-option');
}

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

Where do I put this code?