About Blanky

Documentation

Blanky is the ultimate minimalist WordPress block theme built on the concept of "Build whatever you feel like building." Like a blank canvas, it provides a free space to shape your ideas. Fully compatible with Full Site Editing (FSE), you can customize everything from header to footer with the block editor.

Key Features

  • check_circle Complete freedom
  • check_circle Full Site Editing (FSE)
  • check_circle Ultimate simple design
  • check_circle Commercial use allowed (GPL v3)

Requirements

  • check_circle WordPress 6.6+
  • check_circle PHP 7.4+
  • check_circle Modern browsers
Installation

How to Install

01

Log in to WordPress Dashboard

Access your WordPress admin panel and log in.

WordPress Dashboard
02

Navigate to Appearance → Themes → Add New

From the left menu, select "Appearance" → "Themes" and click the "Add New" button.

Add New Theme
03

Search for "Blanky"

Type "Blanky" in the search field and press Enter.

Search Blanky
04

Click "Install"

Click the "Install" button on the Blanky theme card and wait for it to complete.

Install
05

Click "Activate"

After installation, click "Activate" to apply the theme.

Activate
06

Activation Complete

You'll see "New theme activated." Click "Visit site" to verify.

Activation Complete
07

Open the Editor

Go to "Appearance" → "Editor" to start customizing your theme freely.

Editor
Plugin

Blanky-nordic Plugin

Simply activate the plugin to instantly transform your site into a white × black monotone Nordic minimalist style. No code required.

Key Features

  • check_circle One-click design change
  • check_circle White × Black monotone
  • check_circle Nordic minimalist style
  • check_circle No coding required

Recommended For

  • arrow_forward Lovers of simple, refined design
  • arrow_forward Those wanting a Nordic-style site
  • arrow_forward No-code design enthusiasts
  • arrow_forward Seekers of timeless aesthetics

Before & After

Blanky Standard

Blanky (Standard)

Simple and flexible design

With Blanky-nordic

With Blanky-nordic

Refined Nordic minimalist style

3 Simple Steps

01

Purchase the plugin on Booth

02

Upload the plugin to WordPress

03

Activate the plugin and you're done

$9.99

One-time purchase · No additional fees

Purchase on Booth

※ Exclusive plugin for the Blanky theme

Customization

Using the Theme Editor

Fonts · Layout · Logo · Background & Colors · Menus

01

Go to Appearance → Editor

Open Editor
02

Click Design → Styles

Fonts, colors, backgrounds, and page layouts can all be configured in the Styles tab. Settings here apply to the entire theme.

Styles
03

Click Design → Templates

Select templates for headers, sidebars, and footers. You can also edit index and single post templates, or create your own custom templates.

Templates
04

Click Design → Patterns

Select patterns for headers, footers, and sidebars. Each pattern is provided as a customizable block, and you can create your own original patterns.

Patterns
05

Block Theme Editor Features

Blanky is a block theme (Full Site Editing theme). Unlike traditional themes, you can freely edit the entire site including headers and footers using the editor.

Editable Elements

  • · Header design & layout
  • · Footer structure & colors
  • · Navigation menus
  • · Site logo placement & size
  • · Overall color scheme

Real-time Editing

  • · Drag & drop blocks
  • · Preview changes instantly
  • · No coding required
  • · Adjust mobile view simultaneously
  • · Undo & redo support

Difference from Traditional Themes

Traditional themes required editing PHP files, but with block themes you can customize the entire site using just the intuitive visual editor. No programming knowledge needed.

Block Theme Editor
Advanced

Template Customization

Important Notice

PHP and WordPress knowledge is required. Theme updates will overwrite theme files. To maintain your customizations, it's standard practice to use a child theme.

01

Create a Directory

Create an empty directory named "blanky-child" in "wp-content" → "themes".

02

Create Files

Create index.php, style.css, and functions.php as new empty files.

File structure
03

Edit style.css

Add the following code at the top of style.css. This registers it as a child theme.

/**
 * Theme Name: Blanky Child
 * Template: blanky
 * Text Domain: blanky-child
 */
04

Edit functions.php

Add the following code at the top of functions.php.

<?php
function blanky_child_enqueue_scripts() {
    $theme_parent_version = wp_get_theme()->parent()->get('Version');
    $theme_version = wp_get_theme()->get('Version');

    wp_enqueue_style('blanky-original-style',
        get_template_directory_uri() . '/style.css',
        array(), $theme_parent_version);
    wp_enqueue_style('blanky-child-style',
        get_stylesheet_uri(),
        array('blanky-original-style'), $theme_version);
}
add_action('wp_enqueue_scripts', 'blanky_child_enqueue_scripts');
?>
05

Copy Template Files

Copy the template files you want to modify from the parent "blanky" theme (including the templates folder) into "blanky-child". Make your changes in the child theme files. Style and function changes should also be made in the child theme.