diff --git a/src/minit-plugin.php b/src/minit-plugin.php index c6da2ab..9548c5c 100644 --- a/src/minit-plugin.php +++ b/src/minit-plugin.php @@ -56,8 +56,9 @@ protected function __construct() { add_action( 'init', array( $this, 'init' ) ); add_action( 'init', array( $this, 'admin_init' ) ); - // This action can used to delete all Minit cache files from cron. + // This action can used to bump and purge Minit cache from cron. add_action( 'minit-cache-purge-delete', array( $this, 'cache_purge' ) ); + add_action( 'minit-cache-version-bump', array( $this, 'cache_bump' ) ); } /**