Theme Settings (Components) — hooks
3 hooks — 1 actions · 2 filters.
| Hook | Type | Summary |
|---|---|---|
fw_settings_form_saved | action | Fires after Theme Settings are saved from an import, passing the previous and merged values so listeners can react to the change. |
unysonplus_icons_animated_settings | filter | Filters an optional Animated sub-tab of options for the Icons settings page, added by the Animated Icons extension when active. |
unysonplus_settings_io_exclude_keys | filter | Filters the operational setting keys excluded from a Theme Settings design export/import. |
fw_settings_form_saved
🎬 action · 2 call sites
Fires after Theme Settings are saved from an import, passing the previous and merged values so listeners can react to the change.
add_action( 'fw_settings_form_saved', $callback );
Fired in: framework/extensions/shortcodes/includes/theme-settings/settings-export-import.php:204
unysonplus_icons_animated_settings
🧪 filter
Filters an optional Animated sub-tab of options for the Icons settings page, added by the Animated Icons extension when active.
add_filter( 'unysonplus_icons_animated_settings', $callback );
Fired in: framework/extensions/shortcodes/includes/theme-settings/icons.php:77
unysonplus_settings_io_exclude_keys
🧪 filter
Filters the operational setting keys excluded from a Theme Settings design export/import.
add_filter( 'unysonplus_settings_io_exclude_keys', $callback );
Fired in: framework/extensions/shortcodes/includes/theme-settings/settings-export-import.php:26
← Back to Hooks overview