PluginProbe
Snippet Shortcodes / 4.1.3
Snippet Shortcodes v4.1.3
5.2.1 5.2 5.1.8 5.1.6 5.1.7 5.1.5 trunk 1.0 1.1 1.2 1.3 1.3.1 1.4 1.5 1.5.1 1.6 1.6.1 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.8 2.0 2.0.1 All 74 releases
shortcode-variables / includes / cron.php

cron.php in Snippet Shortcodes 4.1.3, at includes/cron.php

14 lines 363 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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