
How to Translate custom Gutenberg Blocks with block.json
In the previous post I wrote a guide in how to create custom Gutenberg blocks with block.json. As a follow-up, this is a guide in how to handle translation of your block using this method.
In the previous post I wrote a guide in how to create custom Gutenberg blocks with block.json. As a follow-up, this is a guide in how to handle translation of your block using this method.
Following the updated norms in WordPress Gutenberg, custom blocks should now be registered using a block.json file. In this guide we'll go into details on how to go about this.
This post is a quick introduction into a way to keep your your Gutenberg code up to current standards by using React hooks. We'll see how this is beneficial, why we should do it, and how.
In this post we'll look at how to add custom post meta settings to the Gutenberg sidebar, in "Document" tab, rather than relying on adding meta boxes the traditional (and quite honestly much more manual) way.
This post will show how to create custom WordPress REST endpoints and different methods for performing requests to them. There will be examples in both PHP, jQuery and vanilla Javascript.
One of the most common issues with updating a theme or plugin with Gutenberg blocks is that making changes to the block code will break all existing posts using that block. Luckily WordPress offers a solution; a way to deprecate blocks. In this post we'll look at how to do this.
This post will guide you in how to create any kind of content (users, posts, or something else custom) based on entries in a Gravity Forms form. We will add an area in entry details screen in admin to create content based on the submitted information.
In this post I'll attempt to create an overview of how to create custom REST API endpoints and perform requests for them in a custom Gutenberg block. That is, making requests with fetch methods for information not available in WordPress' registered data stores.
In this tutorial I'll show you how to create a front-end form with Advanced Custom Fields (ACF). I'll go into detail about how it works and how you can tweak it to fit your needs.
This tutorial is for you who want to implement an autocomplete search in WordPress, where we are in full control of the returned matches.