WordPress Development Momentum Continues with Gutenberg 22.3
The WordPress development community is kicking off 2026 with significant momentum. With Gutenberg 22.3 released and WordPress 7.0 on the horizon, developers have exciting new tools and features to explore. Here’s everything you need to know about the latest updates.
🎯 Responsive Grid Block with Set Columns
One of the most practical improvements in Gutenberg 22.3 is the enhanced Grid block functionality. You can now use both Minimum column width and Columns controls simultaneously, eliminating the previous toggle between Auto and Manual modes.
This means you can create fully responsive columns while defining a specific number of columns to display – the best of both worlds for flexible layouts.
📝 Dedicated Font Library Admin Screen
Font management gets a major upgrade with the new Appearance → Fonts screen in the WordPress admin. Previously buried deep within the Styles UI, font management is now easily accessible with dedicated screens for:
- Managing installed fonts
- Uploading new fonts
- Support for classic themes (coming in Gutenberg 22.4)
⚡ PHP-Only Block Registration
Developers can now build blocks using only PHP – no JavaScript required! This experimental feature supports all block metadata and significantly reduces the learning curve for WordPress developers.
add_action('init', 'pluginslug_register_block_types');
function pluginslug_register_block_types(): void
{
register_block_type('pluginslug/test', [
'title' => __('My Test Block', 'pluginslug'),
'icon' => 'admin-generic',
'category' => 'widgets',
'description' => __('My test block description.', 'pluginslug'),
'keywords' => [ 'test' ],
'supports' => [ 'auto_register' => true ],
'render_callback' => fn() => 'Hello, world!
'
]);
}
🖼️ New Image Cropper Package
The @wordpress/image-cropper package introduces standardized image-cropping functionality with:
- Interactive aspect ratio-based crop areas
- Image rotation capabilities
- Zoom and flip controls
- Direct editor integration
📊 Data Views and Forms Enhancements
Several improvements to the Data Views system include:
- Min/max validation for input fields
- Display formats for number and integer types
- Standardized padding across components
- Updated operator labels
- Media-specific fields for attachments
🧭 Breadcrumbs Block Progress
The highly requested Breadcrumbs block is well on its way to WordPress 7.0, with recent updates including:
- Block alignment support
- Paged comments support
- Improved homepage handling
🚀 WordPress Playground Updates
WordPress Playground continues to evolve with:
- Dedicated management dashboard
- Unsaved Playground warning with Save button
- Quick Access dropdown for common admin pages
- New DevTools browser extension for Chrome
- Standalone block demo page with interactive code editor
🔮 Looking Ahead to WordPress 7.0
With the WordPress 7.0 call for volunteers recently announced, now is the perfect time to get involved in the next major release. Key areas of focus include:
- Enhanced Media Editor improvements
- Abilities API JavaScript client
- SPA-like navigation framework
- Navigation overlay template parts
🛠️ Developer Resources
Stay up to date with the latest WordPress development:
- WordPress Developer Blog
- Test latest features via Playground
- WordPress Core Development
- Gutenberg GitHub Repository
Key Takeaway: WordPress development is accelerating with practical improvements that directly benefit developers and users. The combination of enhanced block creation tools, improved UI components, and better development workflows positions WordPress strongly for 2026.
Hashtags: #WordPress #Gutenberg #WebDevelopment #PHP #BlockEditor #WordPressDevelopment #CMS