| 1 |
<?php |
| 2 |
|
| 3 |
defined('ABSPATH') or die("Jog on!"); |
| 4 |
|
| 5 |
// Fetch the existing license from WP Options and run it through validation again. |
| 6 |
function sh_cd_cron_licence_check() { |
| 7 |
; |
| 8 |
$existing_license = sh_cd_license(); |
| 9 |
|
| 10 |
sh_cd_license_apply( $existing_license ); |
| 11 |
} |
| 12 |
add_action( 'daily', 'sh_cd_cron_licence_check' ); |
| 13 |
add_action( 'sh-cd-upgrade', 'sh_cd_cron_licence_check' ); |
| 14 |
|