How to Hide the "Student Verification & Discounts" Admin Menu

function plt_hide_user_verification_and_discounts_menus() {
	//Hide the "Settings → Student Verification & Discounts" menu.
	remove_submenu_page('options-general.php', 'user-verification-and-discounts');
}

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

Where do I put this code?