Title: Block Style Modifiers
Author: Kadim Gültekin
Published: <strong>8, Xineru de 2026</strong>
Last modified: 6, Febreru de 2026

---

Guetar plugins

![](https://ps.w.org/block-style-modifiers/assets/banner-772x250.jpg?rev=3435145)

![](https://ps.w.org/block-style-modifiers/assets/icon-128x128.png?rev=3435145)

# Block Style Modifiers

 By [Kadim Gültekin](https://profiles.wordpress.org/arkenon/)

[Download](https://downloads.wordpress.org/plugin/block-style-modifiers.1.0.7.zip)

 * [Details](https://ast.wordpress.org/plugins/block-style-modifiers/#description)
 * [Reviews](https://ast.wordpress.org/plugins/block-style-modifiers/#reviews)
 *  [Installation](https://ast.wordpress.org/plugins/block-style-modifiers/#installation)
 * [Development](https://ast.wordpress.org/plugins/block-style-modifiers/#developers)

 [Support](https://wordpress.org/support/plugin/block-style-modifiers/)

## Description

Block Style Modifiers is a simple WordPress plugin that allows you to add multiple
block styles to Gutenberg blocks.

Style Modifiers are additive CSS classes that:

 * Can be applied in addition to a Block Style
 * Can be selected multiple at the same time
 * Support both checkbox (non-exclusive) and radio (exclusive) behavior per category
 * Are predefined and documented by themes or plugins
 * Preserve class order, allowing advanced CSS control

#### Category Behavior

Style modifiers are organized into categories with two behaviors:

 * **Non-exclusive categories** (checkbox): Multiple modifiers can be selected simultaneously(
   default: `exclusive: false`)
 * **Exclusive categories** (radio): Only one modifier from the category can be 
   selected at a time (`exclusive: true`)

#### Structured Category Object

Categories must be defined as objects with:

 * `slug` – Language-independent identifier for grouping (required)
 * `label` – Translatable UI label (required)
 * `description` – Optional category description
 * `exclusive` – Boolean flag for radio behavior (default: false)

### Features

 * Register multiple style modifiers for any block type
 * Apply multiple style modifiers to a single block
 * Global style modifiers that apply to all blocks
 * Inline CSS support for easy styling of modifiers
 * Structured category objects with exclusive/non-exclusive behavior
 * Theme-independent default modifiers via Block Style Modifier Pack

#### Default Modifiers

Block Style Modifiers includes theme-independent default modifiers that work with
any WordPress theme:

**Philosophy:**
 * Enhance behavior, not visual design * No borders, shadows, spacing,
or color palettes * Work with any theme without conflicts * Atomic and performant*
Respect prefers-reduced-motion

**Available Categories:**

**Animations (Exclusive)** – Entrance animations for wrapper blocks
 * Fade In –
Smooth fade entrance * Slide Up – Slide from bottom * Slide Down – Slide from top*
Slide Left – Slide from right * Slide Right – Slide from left * Scale In – Scale
up animation * Rotate In – Rotate with fade * Flip In X – 3D flip animation Applied
to: Group, Row, Stack, Grid, Column, Columns (wrapper blocks only)

**Animation Delay (Exclusive)** – Control animation timing
 * Fast (0.2s) * Normal(
0.4s) * Slow (0.8s)

**Hover Effects (Exclusive)** – Transform-based hover interactions
 * Zoom In on
Hover * Subtle Rotate on Hover * Bounce on Hover * Shake on Hover * Brighten on 
Hover * Darken on Hover * Grayscale to Color on Hover (Image/Cover only) * Blur 
to Focus on Hover (Image/Cover only) Applied to: Image, Cover, Media & Text (content
blocks only)

**Text Effects (Exclusive)** – Micro-interactions for text
 * Underline Reveal on
Hover * Soft Text Fade on Hover Applied to: Paragraph, Heading (text blocks only)

All default modifiers respect accessibility preferences and are disabled when prefers-
reduced-motion is set.

**Architecture Note:** Animations are only available for wrapper blocks (Group, 
Row, Stack, etc.) while Hover Effects are for content blocks (Image, Cover, Media&
Text). This separation prevents CSS property conflicts and ensures all modifiers
work seamlessly together.

You can easily extend or override these defaults by registering your own style modifiers
in your theme or custom plugin.

### Usage

 * Define your style modifiers using the `block_style_modifiers_register_style` 
   function via your theme’s `functions.php` file or a custom plugin.
 * Select style modifiers in the block editor sidebar under “Block Style Modifiers”.
 * Style modifiers will be applied as additional CSS classes to the block’s wrapper
   element.
 * It is possible that reordering of classes may affect CSS specificity and styling.

**Note:** There is available an experimental plugin includes blocks style modifiers:
[Block Style Modifier Pack](https://github.com/Arkenon/block-style-modifier-pack)
plugin to function.

### Registering a Block Style Modifier

You can easily register your own style modifiers in your theme or custom plugin.

Here are some examples of how to register style modifiers with different category
behaviors:

#### Exclusive Category (Radio Behavior)

    ```
    block_style_modifiers_register_style( [ 'core/image', 'core/cover' ], [
        'name'        => 'zoom-on-hover',
        'label'       => __( 'Zoom on Hover', 'my-theme' ),
        'class'       => 'bsm-zoom-on-hover',
        'description' => __( 'Zoom into image on hover', 'my-theme' ),
        'category'    => [
            'slug'        => 'hover-effects',
            'label'       => __( 'Hover Effects', 'my-theme' ),
            'description' => __( 'Transform-based hover interactions', 'my-theme' ),
            'exclusive'   => true,
        ],
    ] );
    ```

#### Non-Exclusive Category (Checkbox Behavior)

    ```
    block_style_modifiers_register_style( '*', [
        'name'     => 'hide-sm',
        'label'    => __( 'Hide on Small Screens', 'my-theme' ),
        'class'    => 'bsm-hide-sm',
        'category' => [
            'slug'        => 'responsive',
            'label'       => __( 'Responsive', 'my-theme' ),
            'description' => __( 'Responsive visibility controls', 'my-theme' ),
            'exclusive'   => false,
        ],
    ] );
    ```

That’s it! You can now select multiple style modifiers for your blocks in the Block
Editor.

### Example Result in Markup

    ```
    class="wp-block-cover has-custom-content-position is-position-bottom-left bsm-zoom-hover bsm-fade-in bsm-delay-normal"
    ```

It is important to note that the order of classes may affect CSS specificity and
styling. You can easily reorder your modifiers with drag/drop functionality in the
Block Editor.

### Source Code

It is available on GitHub:
 * GitHub: https://github.com/Arkenon/block-style-modifiers

## Screenshots

 * [[

## Installation

 1. You have a couple options:
 2.  * Go to Plugins -> Add New and search for “Block Style Modifiers”. Once found,
       click “Install”.
     * Download the Block Style Modifiers from wordpress.org and make sure the folder
       us zipped. Then upload via Plugins -> Add New -> Upload.
 3. Activate the plugin through the ‘Plugins’ screen in WordPress.
 4. Add your custom style modifiers using the `register_block_style_modifier` function
    in your theme’s `functions.php` file or a custom plugin.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“Block Style Modifiers” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Kadim Gültekin ](https://profiles.wordpress.org/arkenon/)

[Translate “Block Style Modifiers” into your language.](https://translate.wordpress.org/projects/wp-plugins/block-style-modifiers)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/block-style-modifiers/),
check out the [SVN repository](https://plugins.svn.wordpress.org/block-style-modifiers/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/block-style-modifiers/)
by [RSS](https://plugins.trac.wordpress.org/log/block-style-modifiers/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.0.7

 * Added: 5 new animation types (Slide Down, Slide Left, Slide Right, Rotate In,
   Flip In X)
 * Added: 4 new hover effects (Shake, Brighten, Darken, Blur to Focus)
 * Improved: Architecture – Animations now only apply to wrapper blocks (Group, 
   Row, Stack, etc.)
 * Improved: Architecture – Hover effects now only apply to content blocks (Image,
   Cover, Media & Text)
 * Fixed: CSS property conflicts between animations and hover effects
 * Fixed: Grayscale effect renamed to “Grayscale to Color on Hover” for clarity
 * Removed: Overlay hover effect (redundant with Darken effect)
 * Performance: Optimized will-change properties for better GPU acceleration
 * Accessibility: All new effects respect prefers-reduced-motion

#### 1.0.6

 * Added: Structured category object support (slug, label, description, exclusive)
 * Added: Exclusive category behavior (radio selection within categories)
 * Added: Non-exclusive category behavior (checkbox selection – default)
 * Breaking: Category must now be a structured object (string format no longer supported)
 * Updated: Documentation with structured category examples
 * Added: Default modifiers

#### 1.0.5

 * Added: Structured category object support (slug, label, description, exclusive)
 * Added: Exclusive category behavior (radio selection within categories)
 * Added: Non-exclusive category behavior (checkbox selection – default)
 * Breaking: Category must now be a structured object (string format no longer supported)
 * Updated: Documentation with structured category examples
 * Updated: Block Style Modifier Pack with theme-independent default modifiers
 * Improved: Category-based grouping and selection UI

#### 1.0.4

Updated: readme.txt

#### 1.0.3

Updated: readme.txt

#### 1.0.2

Updated: readme.txt

#### 1.0.1

 * Added: Source code section in readme.
 * Escaped: $inline_style variable to prevent potential security issues.

#### 1.0.0

 * Initial release of Block Style Modifiers.

## Meta

 *  Version **1.0.7**
 *  Last updated **2 meses ago**
 *  Active installations **20+**
 *  WordPress version ** 6.1 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 7.4 or higher **
 *  Language
 * [English (US)](https://wordpress.org/plugins/block-style-modifiers/)
 * Tags
 * [block styles](https://ast.wordpress.org/plugins/tags/block-styles/)[block-editor](https://ast.wordpress.org/plugins/tags/block-editor/)
   [custom-styles](https://ast.wordpress.org/plugins/tags/custom-styles/)[gutenberg](https://ast.wordpress.org/plugins/tags/gutenberg/)
 *  [Advanced View](https://ast.wordpress.org/plugins/block-style-modifiers/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/block-style-modifiers/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/block-style-modifiers/reviews/)

## Contributors

 *   [ Kadim Gültekin ](https://profiles.wordpress.org/arkenon/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/block-style-modifiers/)