widget_block_dynamic_classname WordPress Filter Hook
The widget_block_dynamic_classname hook allows you to dynamically set the class name for a widget block. This can be useful if you want to change the appearance of a widget block based on certain conditions. For example, you could use this hook to change the class name of a widget block when the user is logged in or when the current page is a certain page template.
apply_filters( 'widget_block_dynamic_classname', string $classname , string $block_name ) #
The classname used in the block widget’s container HTML.
Description
This can be set according to the name of the block contained by the block widget.
Parameters
- $classname
(string)The classname to be used in the block widget's container HTML, e.g. 'widget_block widget_text'.
- $block_name
(string)The name of the block contained by the block widget, e.g. 'core/paragraph'.
Source
Changelog
Version | Description |
---|---|
5.8.0 | Introduced. |