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
|
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' ); |