#wordpressdev — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #wordpressdev, aggregated by home.social.
-
How to build PHP-only Gutenberg blocks. https://kinsta.com/blog/php-only-gutenberg-blocks/ #wordPressDev 3gutenberg #PHP
-
How to build PHP-only Gutenberg blocks. https://kinsta.com/blog/php-only-gutenberg-blocks/ #wordPressDev 3gutenberg #PHP
-
How to build PHP-only Gutenberg blocks. https://kinsta.com/blog/php-only-gutenberg-blocks/ #wordPressDev 3gutenberg #PHP
-
How to build PHP-only Gutenberg blocks. https://kinsta.com/blog/php-only-gutenberg-blocks/ #wordPressDev 3gutenberg #PHP
-
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
-
What’s new in Gutenberg 22.7? (11 March) #wordPressDev #gutenberg
Posted into POST-ENSHITTIFICATION BLOGGING @post-enshittification-blogging-mobileatom
-
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
-
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
-
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
-
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/
-
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/
-
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/
-
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 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 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
-
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
-
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
-
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
-
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/
-
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/
-
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/
-
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
-
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
-
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
-
Gutenberg 22.3 (December 17) #gutenberg #wordPressDev
Posted into POST-ENSHITTIFICATION BLOGGING @post-enshittification-blogging-mobileatom
-
Gutenberg 22.3 (December 17) #gutenberg #wordPressDev
Posted into POST-ENSHITTIFICATION BLOGGING @post-enshittification-blogging-mobileatom
-
Gutenberg 22.3 (December 17) #gutenberg #wordPressDev
Posted into POST-ENSHITTIFICATION BLOGGING @post-enshittification-blogging-mobileatom
-
WordPress Playground: 2025 Year in Review. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
-
WordPress Playground: 2025 Year in Review. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
-
WordPress Playground: 2025 Year in Review. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
-
WordPress, safely outputting SVGs without fighting PHPCS. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
-
WordPress, safely outputting SVGs without fighting PHPCS. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
-
WordPress, safely outputting SVGs without fighting PHPCS. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
-
Introducing Gemini MCP Tools for #WordPress - An AI Plugin for WordPress that's Packed with CLI tools for the most popular #LLMs & enhanced with Native MCP Support for OpenRouter, Claude Code Router, Exa Search, and a Multi-Agent Local Server 🧑💻🚀🚀
-- Supercharge WordPress with
AI-Powered MCP Tools 🔥 🔥 🧑💻🧑💻🚀🚀We created the ultimate #WordPressAIPlugin that brings 37+ powerful #AITools directly into your workflow. Control your entire #WordPress site through natural language commands, and enjoy native MCP support via an AI Engine integration.
Why Gemini MCP Tools Beats Other WordPress AI Plugins: 😭🥹🥹🤔
- 🎯 37+ free #ArtificialIntelligence tools for WordPress (most give you 5-10)
• True MCP protocol (no quirks)
• Multiple AI providers via OpenRouter (50+ LLMs to choose from, not just one)
• Privacy-first (data stays on YOUR server)
• Toolkit bundled (no Git needed) or easily copy the repo! 😋😋
• Developer-friendly (clean, semantic code)
• Open source (you can contribute! 🤗)Start free, scale to premium when ready!
#WordPressDevelopment #AIEngine #AIEnginePlugin #Tech #Technology #TheGeeklineFeed #WordPressDevelopment #WPDev #WPDeveloper #WordPressDev #MCP #MCPprotocol #OpenAI #Cli #CliTools #Claude #ClaudeCodeRouter #OpenRouter #GeminiCli #ClaudeCode #WordPressPlugin #WordPressDeveloper #WP #WordPressSite #AIWordPressTools
-
Introducing Gemini MCP Tools for #WordPress - An AI Plugin for WordPress that's Packed with CLI tools for the most popular #LLMs & enhanced with Native MCP Support for OpenRouter, Claude Code Router, Exa Search, and a Multi-Agent Local Server 🧑💻🚀🚀
-- Supercharge WordPress with
AI-Powered MCP Tools 🔥 🔥 🧑💻🧑💻🚀🚀We created the ultimate #WordPressAIPlugin that brings 37+ powerful #AITools directly into your workflow. Control your entire #WordPress site through natural language commands, and enjoy native MCP support via an AI Engine integration.
Why Gemini MCP Tools Beats Other WordPress AI Plugins: 😭🥹🥹🤔
- 🎯 37+ free #ArtificialIntelligence tools for WordPress (most give you 5-10)
• True MCP protocol (no quirks)
• Multiple AI providers via OpenRouter (50+ LLMs to choose from, not just one)
• Privacy-first (data stays on YOUR server)
• Toolkit bundled (no Git needed) or easily copy the repo! 😋😋
• Developer-friendly (clean, semantic code)
• Open source (you can contribute! 🤗)Start free, scale to premium when ready!
#WordPressDevelopment #AIEngine #AIEnginePlugin #Tech #Technology #TheGeeklineFeed #WordPressDevelopment #WPDev #WPDeveloper #WordPressDev #MCP #MCPprotocol #OpenAI #Cli #CliTools #Claude #ClaudeCodeRouter #OpenRouter #GeminiCli #ClaudeCode #WordPressPlugin #WordPressDeveloper #WP #WordPressSite #AIWordPressTools
-
Introducing Gemini MCP Tools for #WordPress - An AI Plugin for WordPress that's Packed with CLI tools for the most popular #LLMs & enhanced with Native MCP Support for OpenRouter, Claude Code Router, Exa Search, and a Multi-Agent Local Server 🧑💻🚀🚀
-- Supercharge WordPress with
AI-Powered MCP Tools 🔥 🔥 🧑💻🧑💻🚀🚀We created the ultimate #WordPressAIPlugin that brings 37+ powerful #AITools directly into your workflow. Control your entire #WordPress site through natural language commands, and enjoy native MCP support via an AI Engine integration.
Why Gemini MCP Tools Beats Other WordPress AI Plugins: 😭🥹🥹🤔
- 🎯 37+ free #ArtificialIntelligence tools for WordPress (most give you 5-10)
• True MCP protocol (no quirks)
• Multiple AI providers via OpenRouter (50+ LLMs to choose from, not just one)
• Privacy-first (data stays on YOUR server)
• Toolkit bundled (no Git needed) or easily copy the repo! 😋😋
• Developer-friendly (clean, semantic code)
• Open source (you can contribute! 🤗)Start free, scale to premium when ready!
#WordPressDevelopment #AIEngine #AIEnginePlugin #Tech #Technology #TheGeeklineFeed #WordPressDevelopment #WPDev #WPDeveloper #WordPressDev #MCP #MCPprotocol #OpenAI #Cli #CliTools #Claude #ClaudeCodeRouter #OpenRouter #GeminiCli #ClaudeCode #WordPressPlugin #WordPressDeveloper #WP #WordPressSite #AIWordPressTools
-
Introducing Gemini MCP Tools for #WordPress - An AI Plugin for WordPress that's Packed with CLI tools for the most popular #LLMs & enhanced with Native MCP Support for OpenRouter, Claude Code Router, Exa Search, and a Multi-Agent Local Server 🧑💻🚀🚀
-- Supercharge WordPress with
AI-Powered MCP Tools 🔥 🔥 🧑💻🧑💻🚀🚀We created the ultimate #WordPressAIPlugin that brings 37+ powerful #AITools directly into your workflow. Control your entire #WordPress site through natural language commands, and enjoy native MCP support via an AI Engine integration.
Why Gemini MCP Tools Beats Other WordPress AI Plugins: 😭🥹🥹🤔
- 🎯 37+ free #ArtificialIntelligence tools for WordPress (most give you 5-10)
• True MCP protocol (no quirks)
• Multiple AI providers via OpenRouter (50+ LLMs to choose from, not just one)
• Privacy-first (data stays on YOUR server)
• Toolkit bundled (no Git needed) or easily copy the repo! 😋😋
• Developer-friendly (clean, semantic code)
• Open source (you can contribute! 🤗)Start free, scale to premium when ready!
#WordPressDevelopment #AIEngine #AIEnginePlugin #Tech #Technology #TheGeeklineFeed #WordPressDevelopment #WPDev #WPDeveloper #WordPressDev #MCP #MCPprotocol #OpenAI #Cli #CliTools #Claude #ClaudeCodeRouter #OpenRouter #GeminiCli #ClaudeCode #WordPressPlugin #WordPressDeveloper #WP #WordPressSite #AIWordPressTools
-
Introducing Gemini MCP Tools for #WordPress - An AI Plugin for WordPress that's Packed with CLI tools for the most popular #LLMs & enhanced with Native MCP Support for OpenRouter, Claude Code Router, Exa Search, and a Multi-Agent Local Server 🧑💻🚀🚀
-- Supercharge WordPress with
AI-Powered MCP Tools 🔥 🔥 🧑💻🧑💻🚀🚀We created the ultimate #WordPressAIPlugin that brings 37+ powerful #AITools directly into your workflow. Control your entire #WordPress site through natural language commands, and enjoy native MCP support via an AI Engine integration.
Why Gemini MCP Tools Beats Other WordPress AI Plugins: 😭🥹🥹🤔
- 🎯 37+ free #ArtificialIntelligence tools for WordPress (most give you 5-10)
• True MCP protocol (no quirks)
• Multiple AI providers via OpenRouter (50+ LLMs to choose from, not just one)
• Privacy-first (data stays on YOUR server)
• Toolkit bundled (no Git needed) or easily copy the repo! 😋😋
• Developer-friendly (clean, semantic code)
• Open source (you can contribute! 🤗)Start free, scale to premium when ready!
#WordPressDevelopment #AIEngine #AIEnginePlugin #Tech #Technology #TheGeeklineFeed #WordPressDevelopment #WPDev #WPDeveloper #WordPressDev #MCP #MCPprotocol #OpenAI #Cli #CliTools #Claude #ClaudeCodeRouter #OpenRouter #GeminiCli #ClaudeCode #WordPressPlugin #WordPressDeveloper #WP #WordPressSite #AIWordPressTools
-
Debugging with Xdebug is now available in WordPress Playground. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
-
Debugging with Xdebug is now available in WordPress Playground. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
-
Debugging with Xdebug is now available in WordPress Playground. #wordPressDev
Posted into THE FULCRUM: CODING FOR DEMOCRACY AND THE OMN @the-fulcrum-coding-for-democracy-and-the-omn-mobileatom
-
Scaling typeface gracefully with fluid typography. #wordPressDev #CSS
https://kinsta.com/blog/fluid-typography/?utm_source=flipboard&utm_medium=activitypub
Posted into POST-ENSHITTIFICATION BLOGGING @post-enshittification-blogging-mobileatom
-
Scaling typeface gracefully with fluid typography. #wordPressDev #CSS
https://kinsta.com/blog/fluid-typography/?utm_source=flipboard&utm_medium=activitypub
Posted into POST-ENSHITTIFICATION BLOGGING @post-enshittification-blogging-mobileatom
-
Scaling typeface gracefully with fluid typography. #wordPressDev #CSS
https://kinsta.com/blog/fluid-typography/?utm_source=flipboard&utm_medium=activitypub
Posted into POST-ENSHITTIFICATION BLOGGING @post-enshittification-blogging-mobileatom