WordPress Block Patterns — a practical guide to WordPress block patterns with clear examples you can reuse in real projects.
WordPress Theme Development Series (53/96). Prefer one article? Read the complete WordPress theme development tutorial.
Short description
Patterns speed up page building and keep design consistent across pages.
Register pattern
register_block_pattern('acme/hero', [
'title' => 'Acme Hero',
'categories' => ['featured'],
'content' => '<!-- wp:heading -->n<h2>Hello</h2>n<!-- /wp:heading -->',
]);