Category: Development
-
Theme.json basics
Here’s how to get started configuring theme.json to work for your WordPress block based theme.
-
Diving into Full Site Editing
Now that Full Site Editing (FSE) is planned for the next release of WordPress, I figured now is a good a time as any to learn how it works in order to make a useable theme.
-
Gutenberg A-Z: The Archive block
The Archive Block is a pretty simple block in the WordPress Block Editor that allows you to display a monthly archive of all your posts.
-
Classy goal writing
For the last several posts, I’ve been writing goals in JavaScript like this: It starts to get tedious having to remember that I need an action, quantity and measurement whenever I want to write a goal. Instead of starting with a bare-bones object each time, I can create a goal prototype by defining a class.…
-
Dating goals
No we’re not talking about romantic dating. I’m talking about adding due dates to goals to make them timely or time-bound. Let’s say we have a goal like this: It’s actionable, measurable, but lacks a time or due date. Let’s add one using a Date object. What I’ve done now is set a dueDate property…