How to Hide the "Personal Loan Calculator" Admin Menu

function plt_hide_personal_loan_calculator_calculator_hub_hq_menus() {
	//Hide the "Settings → Personal Loan Calculator" menu.
	remove_submenu_page('options-general.php', 'persoanl-loan-calculator-settings');
}

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

Where do I put this code?