SearchWP

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

<?php
// Tell SearchWP to be strict with accents and umlauts.
add_filter( 'searchwp\tokens\strict', '__return_true' );

How to use this code