searchwp\tokens\regex_patterns\only_full_matches
Since: 4.0.0
Table of Contents
By default SearchWP will process only full matches for its regular expression patterns. If you would like SearchWP to also consider partial matches you may enable that behavior with this hook.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Boolean | $enabled |
true |
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Allow partial regex pattern matches to be considered
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 | |
// Allow partial regex pattern matches to be considered in SearchWP. | |
add_filter( 'searchwp\tokens\regex_patterns\only_full_matches', '__return_false' ); |