Sidebars — hooks
4 hooks — 0 actions · 4 filters.
| Hook | Type | Summary |
|---|---|---|
fw_ext_sidebars_conditional_tags | filter | Filters the list of conditional tags available for assigning dynamic sidebar replacement rules. |
fw_ext_sidebars_post_types | filter | Filters the public post types offered as targets when configuring sidebar replacement conditions. |
fw_ext_sidebars_settings_options | filter | Filters the options array building the Sidebars extension settings form, starting empty for others to populate. |
fw_ext_sidebars_taxonomies | filter | Filters the public taxonomies offered as targets when configuring sidebar replacement conditions. |
fw_ext_sidebars_conditional_tags
🧪 filter
Filters the list of conditional tags available for assigning dynamic sidebar replacement rules.
add_filter( 'fw_ext_sidebars_conditional_tags', $callback );
Fired in: framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:125
fw_ext_sidebars_post_types
🧪 filter
Filters the public post types offered as targets when configuring sidebar replacement conditions.
add_filter( 'fw_ext_sidebars_post_types', $callback );
Fired in: framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:239
fw_ext_sidebars_settings_options
🧪 filter
Filters the options array building the Sidebars extension settings form, starting empty for others to populate.
add_filter( 'fw_ext_sidebars_settings_options', $callback );
Fired in: framework/extensions/sidebars/settings-options.php:6
fw_ext_sidebars_taxonomies
🧪 filter
Filters the public taxonomies offered as targets when configuring sidebar replacement conditions.
add_filter( 'fw_ext_sidebars_taxonomies', $callback );
Fired in: framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:230
← Back to Hooks overview