searchwp\query\search_string
Since: 4.0.0
Table of Contents
Customize the search string for a Query.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
String | $search_string |
The submitted search string | 4.0.0 |
\SearchWP\Query | $query |
The Query being run | 4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Remove hyphens from product codes when searching
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 | |
// Remove hyphens from product codes when searching in SearchWP. | |
add_filter( 'searchwp\query\search_string', function( $search_string, $query ) { | |
return str_replace( '-', '', $search_string ); | |
}, 30, 2 ); |