searchwp\tokens\strict
Since: 4.0.0
Table of Contents
Control whether SearchWP is strict with tokens. When disabled (which is the default behavior) SearchWP will remove accents from characters.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Boolean | $enabled |
false |
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Tell SearchWP to be strict with accents and umlauts
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 | |
// Tell SearchWP to be strict with accents and umlauts. | |
add_filter( 'searchwp\tokens\strict', '__return_true' ); |