searchwp\query\search_string
Da: 4.0.0
Indice
Personalizza la stringa di ricerca per una query.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Stringa | $search_string |
La stringa di ricerca inviata | 4.0.0 |
| \SearchWP\Query | $query |
La Query in esecuzione | 4.0.0 |
Esempi
All hooks should be added to your custom SearchWP Customizations Plugin.
Rimuovi i trattini dai codici prodotto durante la ricerca
This file contains hidden or 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 ); |

