searchwp\query\logic\phrase
Seit: 4.0.0
Steuern Sie, ob SearchWP Anführungszeichen für Phrasen unterstützt.
Parameter
| Typ | Parameter | Standard | Seit |
|---|---|---|---|
| Boolean | $enabled |
Status der Kontrollkästchen auf der Registerkarte "Erweitert" des Einstellungsbildschirms von SearchWP | 4.0.0 |
| \SearchWP\Query | $query |
Die ausgeführte Abfrage | 4.0.0 |
Beispiele
All hooks should be added to your custom SearchWP Customizations Plugin.
Unterstützung für Anführungszeichen-Suche aktivieren
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 | |
| // Enable quoted search support in SearchWP. | |
| add_filter( 'searchwp\query\logic\phrase', function( $enabled, $query ) { | |
| return true; | |
| }, 30, 2 ); |

