Skip to content

Instantly share code, notes, and snippets.

@robi09
Forked from nullvariable/functions.php
Created March 12, 2019 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robi09/6a414d04fdaaaa42bbcded8c132a732a to your computer and use it in GitHub Desktop.
Save robi09/6a414d04fdaaaa42bbcded8c132a732a 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