These three files are the most important:
Enjoy an ad-free experience and access exclusive courses when you join the WebWash Premium Community.
Learn about Premium
SDCs live in web/themes/contrib/byte_theme/components/.
npm run build
ddev wp plugin activate ww-blocks
Compile src/ into build/, then activate the plugin. The PHP loop from Step 2 picks up the block on its own.
Standard
Gutenberg vs Canvas
Step 8:
One thing to note is where the component lives. In the video we add the component to the byte theme, which is the theme that ships with Drupal CMS and Canvas. The same steps work in your own custom theme. Just swap the theme path for your theme folder and create the component inside its components directory.
import { useBlockProps, RichText } from '@wordpress/block-editor';
Both WordPress and Drupal, with Canvas, let you build pages from blocks and components instead of using just a text area. But the way they go about it is very different.
block.json is the ID card for the block. It holds the name, the attributes, and where the scripts and styles live.
edit.js is what you see and edit inside the admin editor.
save.js is the HTML that is saved to the post and shown on the front end.
<?php
/**
* Plugin Name: WW Blocks
* Description: A collection of custom blocks. Currently: Hero.
* Version: 1.0.0
* Text Domain: ww-blocks
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // No direct access.
}
function ww_blocks_register_blocks() {
$build_dir = __DIR__ . '/build';
Create components/ww_hero/ww_hero.component.yml. The props are the editable fields like heading, content, and image. The slot lets editors drop other components inside this one, in this case buttons below the content.
Create components/ww_hero/ww_hero.component.yml. The props are the editable fields like heading, content, and image. The slot lets editors drop other components inside this one, in this case buttons below the content.
Don’t forget to subscribe to our YouTube channel to stay up-to-date.
Table of Contents
import { registerBlockType } from '@wordpress/blocks';
import metadata from './block.json';
import Edit from './edit';
import save from './save';
Create components/ww_hero/ww_hero.twig. The markup is Twig rendered on the server, and the classes like flex, gap-6, and md:flex-row are Tailwind utilities, which is why there’s a CSS build step next.
There’s no single winner, because the two editors are built for different people.
First we look at the main difference between the two editors. Then we build the hero as a Gutenberg block. Then we build the same hero as a Drupal SDC.
That’s the whole component. Two files in a folder, a CSS build because of Tailwind, and a cache clear. No JavaScript, no React, and no per-component build step.
The simplest way to describe the difference is that Gutenberg is content-first and Canvas is component-first.
cd web/themes/contrib/byte_theme
import { __ } from '@wordpress/i18n';
import {
useBlockProps,
RichText,
MediaUpload,
MediaUploadCheck,
} from '@wordpress/block-editor';
import { Button } from '@wordpress/components';
Go ahead and create a folder for the hero component.
Create src/hero/save.js. This is a static block, so what you return here is the front-end HTML that gets saved into the post.
We build the hero inside a custom plugin called ww-blocks. The plugin is a container for blocks. Today it holds one block called hero, but you can drop in more blocks later and they register on their own.
Canvas is built for site builders. It doesn’t come with a set of generic content blocks. Instead, the Canvas components you see in the editor are the ones defined in modules or your theme. A Canvas component can be a block, a views block, a single directory component (SDC), or a code component (JavaScript file you build with Canvas). The most common approach is to create an SDC in your theme, define your props and slots, and then build pages from those components.
Step 2:
Add an SCSS file for the side-by-side layout. It loads on both the front end and inside the editor. You can also add an editor.scss file for editor-only tweaks.
Which One Should You Use?
If you want a typed system of server-rendered components that site builders own and editors put together, Canvas and SDCs are a clean fit. The downside is that you have to define your components up front before editors can build anything.
The “WW Hero” component now shows up in the Canvas component list under the Hero group. Add it to a page, fill in the heading, content, and image, and it renders.
The two editors look similar, but they work in opposite ways. The easiest way to see the difference is to build the same thing in both. In the video, we build a hero component twice: first as a custom Gutenberg block, then as a Drupal Single Directory Component (SDC).
Leading software vendors have completed the expansion from traditional monitoring to full observability. However, there’s still a knowledge gap for customers interested in observability. As a result, some are left feeling a bit…
Join us THURSDAY, November 20 at 1pm ET / 10am PT, for our regularly scheduled call to chat about all things Drupal and nonprofits. (Convert to your local time zone.)Information on joining the meeting…
Integration is done and we switched our default theme to Storybook. After clearing caches if you reload the homepage you should be able to see the Article node you wrote but this time…
Jun 26, 2026 / 13 min Read Summarize with: No-code SaaS builders let you create complete software-as-a-service applications without writing code. Modern platforms include visual development tools, databases, user authentication, business logic, integrations,…
The Post Types Unlimited plugin, also known as “PTU”, allows you to easily add custom post types and taxonomies to your WordPress site. I created this plugin because other plugins, such as the…
We didn’t forget about visual content. All images now include appropriate alt text, ensuring they’re described for users relying on screen readers.This project reinforced the importance of considering accessibility in all aspects of content delivery….