Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 23, 2015 14:01
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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