December 9, 2022 — Create Block Theme has a fantastic new feature that enables theme developers to add external fonts to their block theme. Whether you want to download a font from Google fonts, or install a font you’ve downloaded elsewhere, Create Block Theme makes it painless to add them to your block theme.
December 2, 2022 — This series of workshops looks at building a WordPress block, without using React JSX.
So far, we’ve built a WordPress block using plain JavaScript which supports custom styles via a stylesheet, and which uses block attributes and the RichText component to allow the user to edit the block content. Next, we will add a block control and an additional attribute to allow the user to edit the block alignment.
November 25, 2022 — In the previous session, we built a simple WordPress block using plain JavaScript. However, the block was static. A user couldn’t edit the content in any way.
In this session, we add support for attributes, as well as implement the pre-existing RichText component. These changes enable a user to edit the content of the block.
November 23, 2022 — Learn how to use the Create BLock Theme plugin to streamline your block theme development processes.
November 18, 2022 — In the previous session, we built a simple WordPress block using plain JavaScript. However, the block was static, in that a user couldn’t edit the content in any way.
This week we will add support for attributes, as well as implement the pre-existing RichText component. These will enable a user to edit the content of the block.
November 11, 2022 — This series of workshops will cover what developing blocks without React might look like.
In part 1 we cover the initial files needed to register a block, go over some of the JavaScript syntax and WordPress dependencies, and then add some styling to our block via a useBlockProps and custom stylesheets.
November 7, 2022 — In this session, we will take a brief look at what Internationalisation (or i18n) in themes means, as well as cover the common Internationalisation functions available in WordPress, and how to use them. We’ll then create a blank block theme, and then take a look at the strings that we might need to make translation ready, as well as how to achieve this.
November 2, 2022 — WordPress 6.1 includes a new feature, the ability to register block template parts in classic themes.
This feature allows users to make changes to specific parts of the theme, without affecting the rest of the site layout or design.
October 28, 2022 — One of the great benefits of the Global Styles system in WordPress block themes is the ability to create multiple variations that users can choose from.
With variations, theme developers can create multiple different websites using the same base theme code, providing a wider range of options to their users.
In this session, we’ll be creating a new block theme, and creating a few new Global Style variations for it, to ship with the theme.
October 28, 2022 — A Beginner’s Guide to the WordPress Template Hierarchy, covering how the template hierarchy works, and how it affects both classic and block themes.