SearchWP

searchwp\settings\capability

Since: 4.0.0

Table of Contents

Control the Capability necessary to edit SearchWP’s settings.

Parameters

Type Parameter Default Since
String $capability 'manage_options' 4.0.0

Examples

All hooks should be added to your custom SearchWP Customizations Plugin.

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';
} );

How to use this code