searchwp\tokens
Since: 4.0.0
Table of Contents
Manipulate tokens both when indexing and searching.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
String[] | $tokens |
Tokens after rules have been applied | 4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Remove company name from tokens
<?php | |
// Remove company name "ACME" from tokens in SearchWP. | |
add_filter( 'searchwp\tokens', function( $tokens ) { | |
return array_filter( $tokens, function( $token ) { | |
return 'ACME' !== $token; | |
} ); | |
} ); |