searchwp\missing_integration_notices
Desde: 4.0.0
Sumário
Por padrão, o SearchWP verificará se há alguma Extensão de integração ausente. Você pode desativar esse comportamento com este hook.
Parâmetros
| Tipo | Parâmetro | Padrão | Desde |
|---|---|---|---|
| Booleano | $enabled |
verdadeiro |
4.0.0 |
Exemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Desativar aviso de integrações ausentes
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 missing integrations notice in SearchWP. | |
| add_filter( 'searchwp\missing_integration_notices', '__return_false' ); |

