searchwp\source\check_db
Since: 4.0.0
Table of Contents
Control whether SearchWP validates a Source’s database properties.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Boolean | $enabled |
false |
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Validate Source database properties
By default SearchWP does not validate Source database properties so as to reduce the number of queries being run. To have SearchWP perform extra checks on Sources use this snippet:
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 | |
// Validate Source database properties in SearchWP. | |
add_filter( 'searchwp\source\check_db', '__return_true' ); |