Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created October 26, 2017 13:21
Show Gist options
  • Save lukecav/cd2292e45cfe9973530fed569c496e7c to your computer and use it in GitHub Desktop.
Save lukecav/cd2292e45cfe9973530fed569c496e7c to your computer and use it in GitHub Desktop.
Stop WordPress sending anything but essential data during the update check
function wp_update_privacy( $query ) {
unset($query['php']);
unset($query['mysql']);
unset($query['local_package']);
unset($query['blogs']);
unset($query['users']);
unset($query['multisite_enabled']);
unset($query['initial_db_version']);
return $query;
}
add_action( 'core_version_check_query_args', 'wp_update_privacy' );
@lukecav
Copy link
Author

lukecav commented Oct 26, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment