I needed backgrounds with wallpaper patterns that you can seamlessly place next to each other, like these for example:


There are plenty of examples to be found if you search for something like ‘seamless pattern images’. If the license allows it, you can use them as a background for, for example, a Gutenberg Group block or Cover block. (In the settings dialogs for the background of these blocks, you can specify that the image should not be stretched but tiled next to each other, resulting in corresponding CSS background-size and background-repeat rules).
You might want to customize these kinds of patterns to your own taste: color, line thickness, shape, size of the repeated base element, etc. Of course, you can also draw/create something yourself in, for example, Illustrator or Inkscape (the latter is preferred due to the views on intellectual property that Adobe imposes on its users). There are also online generators available that produce these kinds of patterns (add the words ‘online generator’ when searching).
In any case, it would be better if you had this functionality within the WordPress block editor. Then you wouldn’t have to keep switching between the generator and WordPress, and you wouldn’t have to keep downloading and uploading patterns (and possibly exporting them to a usable format). This would also serve users who find all of this too cumbersome when they need new or customized patterns.
What is really desirable, then, is such an online SVG pattern generator, but as part of the Gutenberg editor. To achieve this, I went through several steps, starting with the background pattern below:
The pattern in the background of this frame is called Asanoha in Japanese, which means hemp. It doesn’t actually resemble a hemp leaf, but that doesn’t make it any less beautiful. And by the way, who really sees two fish in the constellation of the same name?
With this pattern in mind, I went through the following eight steps:
- Creating the SVG
- Creating JSON
- Passing JSON to the block editor
- Adding Functions that work with parameters
- Adding Inspector Controls to the Block Editor
- Creating a Renderer for Template, Parameters, and Function Results
- Presets
- Insert the SVG as a block background image
Finally, I created some additional patterns with different presets for the parameters. At the end, there is an overview of these.
1. Create SVG
The Asanoha pattern is a repetition in both horizontal and vertical directions of the following basic figure:

The bottom half is a mirror image of the top half.
The dimensions are determined by just one parameter: the width. The height is √3 times the width.
Additionally, you can vary the line thickness, line color, and fill color, which makes these suitable as adjustable parameters.
Below is the SVG with a width of 80px, a line thickness of 2px, #FFFFFF as the line color, and #000000 as the background color:
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="139" viewBox="0 0 80 139" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="svg_bg">
<defs>
<path style="fill:none;" id="asanoha-base"
d="M 0,0 80,0 M 0,69.28 80,69.28 40,0 Z M 0,69.28 40,46.18 80,69.28 M 40,46.18 40,0 M 0,69.28 0,23.09 40,0 M 80,69.28 80,23.09 40,0" />
<pattern id="asanoha-pattern" patternUnits="userSpaceOnUse" width="80" height="138.56">
<use href="#asanoha-base" x="0" y="0" />
<use href="#asanoha-base" x="0" y="0" transform="scale(1,-1)" transform-origin="40 69.28"/>
</pattern>
</defs>
<rect id="bg" width="80" height="139" fill="#000000" />
<rect id="main" width="80" height="139" fill="url(#asanoha-pattern)" />
</svg>
2. Create JSON
To allow the parameters to be adjusted in the WordPress block editor, I created a JSON object that can be passed to the block editor. This specifies the parameters and also passes the SVG as a template so that the block editor can create an SVG using the parameters and the template.
The templates were initially so simple that a separate template engine didn’t seem necessary. I created a simple render function that could use a single regular expression to insert parameter values from the block editor into the template. It’s possible that using a more advanced template engine might prove worthwhile later.
To make it easier to add new patterns later, I placed the JSON object in a file in a separate folder in the plugin directory: svg-tpl.
See: svg-tpl/ op Github
3. Pass JSON to the Block Editor
The WordPress plugin file `svg-bg.php` reads all files in the template folder and passes the JSON objects as an array to the block editor.
function get_svgs(){
$svgs = array();
$files = scandir( plugin_dir_path( __FILE__ ) . 'svg-tpl' );
foreach( $files as $file ){
if( $file == '.' || $file == '..' ) continue;
$file_info = pathinfo($file);
if ($file_info['extension'] !== 'json') continue;
$svg_json = json_decode( file_get_contents( plugin_dir_path( __FILE__ ) . 'svg-tpl/' . $file ) );
if( $svg_json->template === "file") {
$svg_json->template = file_get_contents( plugin_dir_path( __FILE__ ) . 'svg-tpl/' . $svg_json->name . '.svg' );
}
$svgs[] = $svg_json;
}
return $svgs;
}
function wp_svg_bg_enqueue_block_editor_assets() {
global $wp_scripts;
$svgs = get_svgs();
// Localize the script with the SVG objects
wp_localize_script('create-block-svg-bg-editor-script', 'svgObjects', $svgs);
}
add_action('enqueue_block_editor_assets', 'wp_svg_bg_enqueue_block_editor_assets');
See: svg-bg.php op Github
4. Adding Functions
The block editor now has a specification of the parameters and a template for the SVG. However, to create the SVG, it also needs to use values derived from those parameters. For example, the height of the Asanoha SVG is equal to √3 * dx (the width parameter).
Therefore, a property with JavaScript functions is also passed to the block editor. For the height of the Asanoha base element, the function `view.functions.svg_height` is passed, which calculates the height based on `dx`. When evaluating the function, the entire JSON object is also passed as the `data` parameter, so the function has access to all parameters in the JSON object:
{ "view ": {
"parameters" : {
...
},
"functions" : {
"svg_height": { "return Math.round( data.dx.value * Math.sqrt(3));" }
...
}
}
The complete setup for the block editor to generate a custom SVG can be seen in the file `svg-tpl/asanoha.json`
See: svg-tpl/asanoha.json op Github
5. Add Inspector Controls to the Block-editor
Now that the JSON object can specify which Inspector controls can be configured, the `edit-block` function can be created.
First, a select box is filled with options corresponding to the names of all JSON files found in the `svg-tpl` folder. Initially, I only had “Asanoha,” but the intention is to add more patterns. Based on the JSON object selected in this dropdown, controls are added to the panel in the Gutenberg Inspector controls. The parameter `dx`, as defined in `asanoha.json`, has the type `range`. This means the `edit` function adds a `RangeControl` to the panel. Other properties of `dx` are used to further configure the `RangeControl`, such as minimum and maximum values.
In addition to the `range` type, `edit.js` currently recognizes the types `string`, `select`, and `colorpanel`. These allow corresponding controls to be added. If the type is not recognized, it is ignored.
See: src/edit.js op Github
6. Render template, parameters and functions
Once the necessary parameters are configured, the final SVG can be generated using the `renderTemplate` function. Initially, a template engine like Mustache seemed logical, but Copilot suggested a simple regex that works for now. Since this render function cannot recognize functions, the function results are explicitly placed in intermediate variables so that only variables need to be replaced during rendering, not functions evaluated.
See: src/templating.js op Github
7. Presets
I extended the JSON objects for the patterns with a `presets` property, an array containing groups of parameter presets. This shows that small changes to the parameters can result in significantly different appearances for the pattern. SVGs with these presets get an additional dropdown in the Inspector controls.
See: `src/edit.js`
To distinguish them, I gave the preset groups names, often as far-fetched as Asanoha.
8. An SVG as a background
What should happen to the SVG after rendering? SVGs can be included in a webpage in various ways. In principle, the SVG could be saved as a file (e.g., in `wp-uploads/`), and that file could then be selected as a background image. However, this is not without issues because WordPress does not allow SVG uploads without modification.
Alternatively, an SVG can be included directly in the HTML and even used as a background image via an inline CSS style rule like the one below. This also saves an additional request to the server.
background-image: url(data:image/svg+xm, 'urlencoded svg data').
By converting the SVG into an inline style rule, it can be added to the `blockProps` of the Gutenberg block in both the `edit` and `save` functions.
// get the resulting svg by rendering the template and parameters
const svgResult = renderTemplate( mytemplate, myview );
// URL encode the svg
const svgDataUri = `data:image/svg+xml,${ encodeURIComponent(
svgResult
) }`;
// Add the encoded svg as an inline css background rule
blockProps = useBlockProps( {
style: { backgroundImage: `url("${ svgDataUri }")` },
} );
Adjusting parameters will immediately result in an updated CSS background style, so the Block Editor updates the background in real time, as intended.
See: src/edit.js in Github
See: src/save.js in Github
Patterns and Presets
Asanoha
Dark Night
Black River
Star Blazer
Soup
Beach
Red
Blue
Gump
Free
Crates
Metalic
Anatomy
Fragile
Ant
Diamond
Cardinal
Leaves
Polka
Candy
Rings
Elegant
Horrible 70
Awefull 80
Store
Seigaiha
Pink
Pink Gradiënt
Lime
Classic 2