What’s new in Gutenberg 22.7? (11 March) #wordPressDev #gutenberg
Posted into POST-ENSHITTIFICATION BLOGGING @post-enshittification-blogging-mobileatom
What’s new in Gutenberg 22.7? (11 March) #wordPressDev #gutenberg
Posted into POST-ENSHITTIFICATION BLOGGING @post-enshittification-blogging-mobileatom
🆕 New post
WP Trac Triager — a Chrome extension that adds role badges, keyword timelines, milestone history, and component maintainer info right to WordPress Trac tickets.
Makes triage way more efficient 🚀
https://juanma.codes/2026/02/16/wp-trac-triager-a-chrome-extension-for-wordpress-core-ticket-triage/

WordPress Core is built by thousands of contributors working together on an open-source platform. With that scale comes complexity: at any given time, there are thousands of tickets in WordPress Trac reporting bugs, requesting features, and proposing enhancements. Triage—the process of reviewing, organizing, and prioritizing these tickets—helps contributors focus on the work that matters most. […]
12 Top WordPress Themes People Actually Use in 2026 (Tested & Ranked) #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
@itworldcup PHP is not too far behind.
But check out the vote count!
700 votes cast so far. This is the most voted on head to head so far.
Come on #php #phpc #symfony #laravel #wordpress #WordPressDev #drupal #doctrine #cakephp #magento #laminas #slimphp devs.
We can win this.
I do a lot of #WordPress Gutenberg development and I have a bunch of code snippets I run in the browser console.
This one retrieves the meta fields and filters the property names to only those that contain "mysubstring"
((substring) => Object.fromEntries(
Object.entries(
wp.data.select('core/editor').getEditedPostAttribute('meta')
).filter(
([key, value]) => key.toLowerCase().includes(substring.toLowerCase()
)
)))('mysubstring')
See https://salferrarello.com/filter-meta-in-wordpress-gutenberg-block-editor/
How to Add Settings Pages to WordPress Plugins: A Developer's Guide. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
How to Build an Interactive WordPress Theme Demo with Playground Blueprints. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
Dropping support for PHP 7.2 and 7.3. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
What Really Happens When You Type a URL in Your Browser?
Typing a URL feels instant, but behind that single keystroke, a global engineering marathon begins. From DNS resolution and TLS handshakes to HTTP/3, rendering engines, and GPU compositing, your browser coordinates thousands of decisions in milliseconds. This post breaks down what really happens when you press Enter, step by step, without the fluff.
Checkout my full blog: https://kishanjasani.in/what-happens-when-you-type-a-url-into-browser/
Word Switcher: Extending Core Blocks with Interactivity. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom

Learn to build a smooth word-switching effect in WordPress by combining four key APIs: HTML API for markup transformation, Interactivity API for animations, Format API for editor controls, and JavaScript Modules for efficient code—all without external libraries.