Skip to content

Instantly share code, notes, and snippets.

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