SearchWP

searchwp\options\settings_screen

Since: 4.0.0

Table of Contents

Control whether SearchWP’s options page appears.

Parameters

Type Parameter Default Since
Boolean $enabled true 4.0.0

Examples

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

Disable SearchWP's settings screen

Disable SearchWP’s settings screen.

<?php
// Disable SearchWP's settings screen.
add_filter( 'searchwp\options\settings_screen', '__return_false' );

How to use this code