SearchWP

searchwp\index\process\enabled

Since: 4.0.0

Table of Contents

Control whether the Index delta handling process is enabled.

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 Index delta handling

Disable the Index delta handling process

<?php
// Disable SearchWP's Index delta handling.
add_filter( 'searchwp\index\process\enabled', '__return_false' );

How to use this code