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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Force enable SearchWP's alternate indexer. | |
add_filter( 'searchwp\indexer\alternate', '__return_true' ); |