SearchWP

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:

<?php
// Validate Source database properties in SearchWP.
add_filter( 'searchwp\source\check_db', '__return_true' );

How to use this code