Skip to content

Instantly share code, notes, and snippets.

@lilumi
Last active May 5, 2023 16:44
Show Gist options
  • Save lilumi/5c7abac47614c4853b735e88a8fc0f7b to your computer and use it in GitHub Desktop.
Save lilumi/5c7abac47614c4853b735e88a8fc0f7b to your computer and use it in GitHub Desktop.
Remove counting author posts on users.php
<?php
function interceptQuery( $query ) {
if ( $GLOBALS['pagenow'] === 'users.php' && strpos( $query, 'SELECT post_author, COUNT(*) FROM' ) === 0 ) {
echo '<h3>count_many_users_posts disabled for performance reasons</h3>';
return false;
}
return $query;
}
add_filter( 'query', 'interceptQuery' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment