
前言介紹
- 這款 WordPress 外掛「Block Style Modifiers」是 2026-01-07 上架。
- 目前尚無安裝啟用數,是個很新的外掛。如有要安裝使用,建議多測試確保功能沒問題!
- 上一次更新是 2026-02-06,距離現在已有 20 天。
- 外掛最低要求 WordPress 6.1 以上版本才可以安裝。
- 外掛要求網站主機運作至少需要 PHP 版本 7.4 以上。
- 尚未有人給過這款外掛評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
arkenon |
外掛標籤
gutenberg | block-editor | block styles | custom-styles | style variations |
內容簡介
### 總結:
Block Style Modifiers 是一個簡單的 WordPress 外掛,可以讓你為 Gutenberg 區塊添加多個樣式。
這些 Style Modifiers 是可以額外添加的 CSS 類,可以一次應用於多個區塊,由主題或外掛預定並有文件記載。
可以在任何區塊類型中註冊多個樣式修改器,並將它們應用到單一區塊。
支持全域樣式修飾符,對所有區塊進行樣式修改。
使用時需要在主題的 functions.php 檔案或自訂外掛中使用 register_block_style_modifier 函數來定義你的樣式修改器。在區塊編輯器中選擇樣式修改器,它們將作為額外的 CSS 類應用在區塊的包裝元素上。
### 問與答:
1. Block Style Modifiers 是什麼?
- 可以為 Gutenberg 區塊添加多個樣式的 WordPress 外掛。
2. Style Modifiers 主要特點有哪些?
- 可以額外添加於區塊樣式之外的 CSS 類。
- 可以一次選擇多個樣式修改器。
- 由主題或外掛預定並有文件記載。
- 保持類順序,允許進階的 CSS 控制。
3. 如何使用 Block Style Modifiers?
- 使用 register_block_style_modifier 函數,在主題的 functions.php 檔案或自訂外掛中定義你的樣式修改器。
- 在區塊編輯器的側邊欄下找到「Block Style Modifiers」,選擇所需的樣式修改器。
- 樣式修改器將作為附加的 CSS 類應用在區塊的包裝元素上。
4. 有哪個外掛包含 Block Style Modifiers?
- Block Style Modifier Pack 外掛。
5. 如何註冊一個 Block Style Modifier?
- 使用 block_style_modifiers_register_style 函數來註冊,提供類別、標籤、描述等資訊。
- 例如可以使用全域樣式適用於所有區塊的設定。
原文外掛簡介
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 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
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Block Style Modifiers」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
1.0.1 | 1.0.2 | 1.0.3 | 1.0.4 | 1.0.7 | trunk |
延伸相關外掛(你可能也想知道)
Classic Editor 》Classic Editor 是由 WordPress 團隊維護的官方外掛程式,可還原之前(也就是「經典」)的 WordPress 編輯器和「編輯文章」畫面,使使用者可以使用延伸這個畫...。
Advanced Editor Tools 》高級編輯工具(以前稱為 TinyMCE Advanced)引入了一個「經典段落」區塊,供區塊編輯器(Gutenberg)使用。, 如果您還沒有準備好切換到區塊編輯器,或者有插...。
Starter Templates – AI-Powered Templates for Elementor & Gutenberg 》免費模板,支援 Elementor、Beaver Builder 和 Block Editor, 使用 Starter Templates 外掛,只需數分鐘即可建立專業且完美的網站。此外掛為使用者提供超過 2...。
Disable Gutenberg 》此外掛可禁用新的 Gutenberg 編輯器 (也稱為區塊編輯器),並以經典編輯器取代它。你可以完全禁用 Gutenberg,或從文章、頁面、角色、文章類型和主題模板中有...。
Gutenberg Essential Blocks – Page Builder for Gutenberg Blocks & Patterns 》使用 Essential Blocks for Gutenberg,即可實現您的創意視覺效果,這是適用於 WordPress 的最終區塊庫!, 使用我們易於使用的區塊,增強您使用 Gutenberg 的...。
Blocks Animation: CSS Animations for Gutenberg Blocks 》Blocks Animation 可以讓您以優雅的方式,為所有的 Gutenberg 區塊添加 CSS 動畫。, Blocks Animation 的用戶介面非常原生且直觀,您甚至不會注意到它已經被...。
GutenKit – Page Builder Blocks, Patterns, and Templates for Gutenberg Block Editor 》總結:GutenKit for Gutenberg 是一個在 WordPress 區塊編輯器中提供輕鬆網頁建置體驗的終極解決方案,讓您無需編碼技能就能設計令人驚艷的專業網頁內容。, ,...。
Ultimate Blocks – 25+ Gutenberg Blocks for Block Editor 》k, HowTo Schema Block lets you create step-by-step instructions with images and video, perfect for tutorials and guides. It is also Schema Markup e...。Lightbox for Gallery & Image Block 》這個 WordPress 外掛為標準 WordPress 圖庫及圖像區塊新增了一個簡單輕量的 Lightbox,它可以偵測文章是否包含圖庫或圖像區塊,然後載入並啟動 baguetteBox.j...。
Classic Editor and Classic Widgets 》這個免費的 Classic Editor & Classic Widgets 外掛可幫助您輕鬆地完全停用 Gutenberg 編輯器,並啟用 Classic Editor 和 Classic Widgets。, Classic Ed...。
PublishPress Blocks – Block Controls, Block Visibility, Block Permissions 》PublishPress Blocks 提供您在 WordPress 區塊編輯器中建立專業網站所需的所有功能,其中包括佈局選項、輪播、按鈕、圖示、圖片庫、地圖、選項卡、推薦、手風...。
Nexter Gutenberg Blocks – Website Builder & 1000+ Starter Templates 》「Gutenberg」外掛 「The Plus Addons for Block Editor」提供了85多個高級WordPress區塊、300多個預建UI區塊和模板,具有強大的功能,如Blog Builder、WooCo...。PDF viewer for Elementor & Gutenberg 》「PDFjs Viewer for Elementor」外掛是一個強大的工具,可輕鬆將 PDF 檔案嵌入到您的 Elementor 頁面建構器頁面中。它專為 Elementor 設計,因此您可以輕鬆在...。
Genesis Custom Blocks 》Genesis Custom Blocks 為 WordPress 開發人員提供了必要的工具,以應對現代 WordPress 「區塊先行」的實境。, WordPress 區塊編輯器(又稱 Gutenberg)為我...。
BlockArt Blocks – Gutenberg Blocks, Page Builder Blocks ,WordPress Block Plugin, Sections & Template Library 》BlockArt Gutenberg Blocks – 最佳 WordPress Gutenberg 外掛程式之一, 擁有強大功能的 BlockArt 提供了無縫的網站建立體驗。它提供了六種獨特且響應式的區塊...。
