Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 23, 2015 14:01
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/579f39899b67915906a1 to your computer and use it in GitHub Desktop.
Save jchristopher/579f39899b67915906a1 to your computer and use it in GitHub Desktop.
Modify the capability required to view the SearchWP Dashboard Widget
<?php
function my_searchwp_dashboard_widget_cap( $capability ) {
return 'edit_posts'; // Editors and up should be able to see the stats
}
add_filter( 'searchwp_dashboard_widget_cap', 'my_searchwp_dashboard_widget_cap' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment