SearchWP

searchwp\query\partial_matches

Since: 4.0.0

Table of Contents

Control whether SearchWP applies its partial matching logic when necessary.

Parameters

Type Parameter Default Since
Boolean $enabled State of checkbox on Advanced tab of SearchWP settings screen 4.0.0
Array $args
Key Type Value
tokens Array Tokens for this search
query \SearchWP\Query The Query taking place
4.0.0

Examples

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

Programmatically enable partial matching

Programmatically enable partial matching

<?php
// Programmatically enable partial matching in SearchWP.
add_filter( 'searchwp\query\partial_matches', '__return_true' );

How to use this code