searchwp\highlighter\partial_matches
Desde: 4.0.0
Sumário
Controlar se o destaque considera correspondências parciais.
Parâmetros
| Tipo | Parâmetro | Padrão | Desde |
|---|---|---|---|
| Booleano | $enabled |
Estado da caixa de seleção de correspondências parciais na aba Avançado das configurações do SearchWP | 4.0.0 |
Exemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Habilitar correspondências parciais do realce
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 highlighter partial matches in SearchWP. | |
| add_filter( 'searchwp\highlighter\partial_matches', '__return_true' ); |

