searchwp\query\partial_matches\did_you_mean
Seit: 4.0.0
Steuern Sie, ob SearchWP „Meinten Sie…“-Korrekturen für Suchen durchführt, die die Teilübereinstimmungslogik anwenden.
Parameter
| Typ | Parameter | Standard | Seit | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Boolean | $enabled |
wahr |
4.0.0 |
|||||||||
| Array |
$args
|
4.0.0 |
||||||||||
Beispiele
All hooks should be added to your custom SearchWP Customizations Plugin.
Disable "Meinten Sie?" functionality
Disable “Meinten Sie?” functionality
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 | |
| // Disable SearchWP's "Did you mean?" functionality. | |
| add_filter( 'searchwp\query\partial_matches\did_you_mean', function( $enabled, $args ) { | |
| return false; | |
| }, 10, 2 ); |

