Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 26, 2020 17:12
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/ce5339ccc1ec1307d5c2689994d2bb01 to your computer and use it in GitHub Desktop.
Save jchristopher/ce5339ccc1ec1307d5c2689994d2bb01 to your computer and use it in GitHub Desktop.
Allow Editors to manage SearchWP's settings
<?php
// Allow Editors to manage SearchWP's settings.
add_filter( 'searchwp\settings\capability', function( $capability ) {
return 'edit_others_posts';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment