How to Hide the "Password Protect Staging" Admin Menu

function plt_hide_password_protect_staging_menus() {
	//Hide the "Settings → Password Protect Staging" menu.
	remove_submenu_page('options-general.php', 'password-protect-staging');
}

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

Where do I put this code?