Actions

tytw_fs_loaded

Fires after the Freemius SDK has been initialized. Use this to run code that depends on the licensing SDK being ready.

php
add_action( 'tytw_fs_loaded', function() {
    // Freemius SDK is ready.
} );

tyt_daily_cleanup

Fires once per day via WP Cron to trigger the data retention cleanup. You can hook into this if you want to run additional cleanup tasks alongside the plugin’s own cleanup.

php
add_action( 'tyt_daily_cleanup', function() {
    // Your own daily cleanup code.
} );