Framework — hooks
4 hooks — 2 actions · 2 filters.
| Hook | Type | Summary |
|---|---|---|
fw_before_init | action | Fires at the start of framework bootstrap, before autoload and core initialization. |
fw_init | action | The framework is loaded |
fw:backend-option-view:design-default:desc-under-label | filter | Fixes https://github.com/ThemeFuse/Unyson/issues/2143 |
fw:backend-option-view:design-default:responsive-classes | filter | Filters the responsive grid classes for the label and input columns of the default option-row layout. |
fw_before_init
🎬 action
Fires at the start of framework bootstrap, before autoload and core initialization.
add_action( 'fw_before_init', $callback );
Fired in: framework/bootstrap.php:44
fw_init
🎬 action
The framework is loaded
add_action( 'fw_init', $callback );
Fired in: framework/bootstrap.php:208
fw:backend-option-view:design-default:desc-under-label
🧪 filter
Fixes https://github.com/ThemeFuse/Unyson/issues/2143
add_filter( 'fw:backend-option-view:design-default:desc-under-label', $callback );
Fired in: framework/views/backend-option-design-default.php:136
fw:backend-option-view:design-default:responsive-classes
🧪 filter
Filters the responsive grid classes for the label and input columns of the default option-row layout.
add_filter( 'fw:backend-option-view:design-default:responsive-classes', $callback );
Fired in: framework/views/backend-option-design-default.php:57
← Back to Hooks overview