Gutenberg Script Versions in v5.6
December 19, 2020This is a reference post that lists Gutenberg script versions that are shipped with WordPress core v5.6. If you are using the package to…
Written by Raphael Hüni Dev based in Switzerland focusing mostly on frontend technology.
This is a reference post that lists Gutenberg script versions that are shipped with WordPress core v5.6. If you are using the package to…
WordPress v5.6 brings a lot of changes to the editor. Widgets The block based widgets screen is out of experiments and now available by…
The WordPress customizer offers an easy interface for users to set their own logos. However by default the customization options seem…
When adding your own fields to the WordPress customizer it is necessary to define sanitizing functions. The following is a collection of…
It is as easy as declaring support for the color picker for your blocks to add a color settings panel for your blocks. We have already seen…
To decouple logic and markup from each other, let’s define a helper class that is in charge of gathering all relevant post data. Basic Class…
If you have your own docker image/s set up, here is how you can push new builds. Make the necessary changes in your Dockerfile then change…
Following are some CLI commands I find useful and need from time to time but not enough to just remember them. All of these commands work in…
In most cases block colors can be enabled using supports flags. This works well, if the colors can be applied to the containing block and do…
This article shows how to format a string of numbers and format it for use in attributes and make them more readable for visitors. The…
Some useful Git commands, some of them for regular use but most you just need every once in a while. Here is where I remember them. Checkout…
In the different data stores the block editor provides there is a lot of information stored that might be useful to display. Get the current…
Bring your client’s brand into the WordPress admin and the login screen to further personalize the experience of site admins and editors…
These plugins are part of most of my project. Some play a major role when it comes to functionality others are helpful during development…
Register your own block patterns to provide your users with an easy way to achieve intricate layouts.
This is a possible setup for a WordPress plugin that adds a new custom editor block. Check out the full repo on Github. The plugin is based…
This effect can bring a little bit of life into a display of key numbers say in an annual report or similar. We animate counting from one…
This article will explain how to migrate a class based component to a function based one. With the introduction of hooks and clear focus on…