Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 23, 2015 14:14
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 jchristopher/193b6dfe17d16bd31c0e to your computer and use it in GitHub Desktop.
Save jchristopher/193b6dfe17d16bd31c0e to your computer and use it in GitHub Desktop.
Modify the capability required to view SearchWP statistics
<?php
function my_searchwp_statistics_cap( $capability ) {
return 'manage_options'; // only Administrators
}
add_filter( 'searchwp_statistics_cap', 'my_searchwp_statistics_cap' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment