Skip to content

Instantly share code, notes, and snippets.

@nullvariable
Created March 12, 2019 18:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save nullvariable/c82773df08e0cc7522307edc4053c1d4 to your computer and use it in GitHub Desktop.
Save nullvariable/c82773df08e0cc7522307edc4053c1d4 to your computer and use it in GitHub Desktop.
don't send user count to wp.org stats.
<?php
add_filter( 'core_version_check_query_args', 'hide_stats', 99 );
function hide_stats( $query ) {
$query['blogs'] = 1;
$query['users'] = 1;
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment