Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created March 29, 2022 13:44
Show Gist options
  • Select an option

  • Save searchwpgists/3d90c947d619568d966129f7b957956c to your computer and use it in GitHub Desktop.

Select an option

Save searchwpgists/3d90c947d619568d966129f7b957956c 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