searchwp\license\key
Da: 4.0.0
Indice
Definisci programmaticamente la tua chiave di licenza.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Stringa | $key |
Chiave di licenza memorizzata | 4.0.0 |
Esempi
All hooks should be added to your custom SearchWP Customizations Plugin.
Definisci programmaticamente la chiave di licenza
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 | |
| // Programmatically define SearchWP license key. | |
| add_filter( 'searchwp\license\key', function( $key ) { | |
| return 'my-full-searchwp-license-key'; | |
| } ); |

