How to Hide the "Client Portal Settings" Admin Menu

function plt_hide_client_portal_menus() {
	//Hide the "Users → Client Portal Settings" menu.
	remove_submenu_page('users.php', 'client_portal_settings');
}

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

Where do I put this code?