woof_freemius_loaded
Fires after the Freemius SDK has been fully loaded and initialized, providing a hook point for Freemius-related customizations.
Source File
freemius.php:67
Code Example
add_action('woof_freemius_loaded', function() {
// Perform custom licensing logic
if (woof_freemius()->is_premium()) {
// Enable premium features
}
});
Usage Notes
- Fires at the end of the freemius.php setup file after the SDK initialization.
- Access the Freemius instance via the woof_freemius() function.
- Used internally to redirect to the settings page after license activation via wp_safe_redirect.