searchwp\highlighter\case_insensitive
Desde: 4.0.0
Tabla de contenidos
Controlar la sensibilidad a mayúsculas y minúsculas al resaltar.
Parámetros
| Tipo | Parámetro | Predeterminado | Desde |
|---|---|---|---|
| Booleano | $enabled |
verdadero |
4.0.0 |
Ejemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Hacer que el resaltado distinga entre mayúsculas y minúsculas
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 | |
| // Make highlighting case sensitive in SearchWP. | |
| add_filter( 'searchwp\highlighter\case_insensitive', '__return_false' ); |

