searchwp\query\partial_matches\wildcard_before
Since: 4.0.0
Table of Contents
Control whether a wildcard is added before a search query when performing partial match logic.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Boolean | $enabled |
false |
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Enable wildcard before search query
<?php | |
// Tell SearchWP to use a wildcard prefix when performing partial match logic. | |
add_filter( 'searchwp\query\partial_matches\wildcard_before', '__return_true' ); |