SearchWP

searchwp\license\key

Since: 4.0.0

Table of Contents

Programmatically define your license key.

Parameters

Type Parameter Default Since
String $key Stored license key 4.0.0

Examples

All hooks should be added to your custom SearchWP Customizations Plugin.

Programmatically define license key

<?php
// Programmatically define SearchWP license key.
add_filter( 'searchwp\license\key', function( $key ) {
return 'my-full-searchwp-license-key';
} );

How to use this code