SearchWP

searchwp\indexer\alternate

Since: 4.0.0

Table of Contents

Control whether SearchWP uses its alternate indexer. SearchWP automatically detects when the alternate indexer is necessary but this hook overrides that detection.

See also: Alternate Indexer

Parameters

Type Parameter Default Since
Boolean $enabled false 4.0.0

Examples

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

Force enable the alternate indexer

<?php
// Force enable SearchWP's alternate indexer.
add_filter( 'searchwp\indexer\alternate', '__return_true' );

How to use this code