SearchWP

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

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

How to use this code