Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start an initial documentation about the block based themes #18890

Merged
merged 14 commits into from Dec 5, 2019
@@ -0,0 +1,98 @@
# Block-based Themes (Experimental)

> This is the documentation for the current implementation of block-based themes, also known as Full Site Editing or Block Content Areas. These features are still experimental in the plugin. “Experimental” means this is just an early implementation that is subject to potential drastic and breaking changes in iterations based on feedback from users, contributors and theme authors.
> Documentation has been shared early to surface what’s being worked on and invite feedback from those experimenting with the APIs. You can provide feedback in the weekly #core-editor chats where the latest progress of this effort will be shared and discussed, or async via Github issues.
**Note:** In order to use these features, make sure to enable the "Full Site Editing" flag from the **Experiments** page of the Gutenberg plugin.

## What is a block-based theme?

A block-based theme is a WordPress theme with templates entirely composed of blocks so that in addition to the post content of the different post types (pages, posts, ...), the block editor can also be used to edit all areas of the site: headers, footers, sidebars, etc.

## What is the structure of a block-based theme?

A very simple block-based theme is structured like so:

```
theme
|__ style.css
|__ functions.php
|__ block-templates
|__ index.html
|__ single.html
|__ archive.html
|__ ...
|__ block-template-parts
|__ header.html
|__ footer.html
|__ sidebar.html
|__ ...
```

The difference with existing WordPress themes is that the different templates in the template hierarchy, and template parts, are block templates instead of php files.

## What is a block template?

A block template is made up of a list of blocks. Any WordPress block can be used in a template. Templates can also reuse parts of their content using "Template Parts". For example, all the block templates can have the same header included from a separate `header.html` template part.

Here's an example of a block template:

```html
<!-- wp:site-title /-->

<!-- wp:image {"sizeSlug":"large"} -->
<figure class="wp-block-image size-large">
<img src="https://cldup.com/0BNcqkoMdq.jpg" alt="" />
</figure>
<!-- /wp:image -->

<!-- wp:group -->
<div class="wp-block-group">
<div class="wp-block-group__inner-container">
<!-- wp:post-title /-->
<!-- wp:post-content /-->
</div>
</div>
<!-- /wp:group -->

<!-- wp:group -->
<div class="wp-block-group">
<div class="wp-block-group__inner-container">
<!-- wp:heading -->
<h2>Footer</h2>
<!-- /wp:heading -->
</div>
</div>
<!-- /wp:group -->
```

## How to write and edit these templates?

Ultimately, any WordPress user with the correct capabilities (example: `administrator` WordPress role) will be able to access these templates in the WordPress admin, edit them in dedicated views and potentially export them as a theme.

In the current iteration (at the time of writing this doc), you can navigate to the temporary "Templates" admin menu under "Appearance" `wp-admin/edit.php?post_type=wp_template` and use this as a playground to edit your templates.
This conversation was marked as resolved by youknowriad

This comment has been minimized.

Copy link
@jffng

jffng Dec 4, 2019

Contributor

Just noting that the "Full Site Editing" feature flag must be enabled in the Gutenberg > Experiments settings for the temporary Templates menu to appear.

This comment has been minimized.

Copy link
@epiqueras

epiqueras Dec 4, 2019

Contributor

That should be mentioned in the introduction. None of this will work without enabling it.


When ready, switch to the "Code editor" mode and grab the HTML of the template from there and put it in the right file in your theme directory.

## Templates CPT

If you save the templates directly from the temporary Templates admin menu, you'll be able to override your theme's templates.

Example: By using **single** as the title for your template and saving it, this saved template will take precedence over your theme's `single.html` file.

Note that it won't take precedence over any of your theme's templates with higher specificity in the template hierarchy. Resolution goes from most to least specific, looking first for a CPT post and then for a theme template, at each level.

## Theme Blocks

Some blocks have been made specifically for block-based themes. For example, you'll most likely use the **Site Title** block in your site's header while your **single** block template will most likely include a **Post Title** and a **Post Content** block.

As we're still early in the process, the number of blocks specifically dedicated to these block templates is relatively small but more will be added as we move forward with the project.

## Styling

One of the most important aspects of themes (if not the most important) is the styling. While initially you'll be able to provide styles and enqueue them using the same hooks themes have always used, this is an area that is still [being explored](https://github.com/WordPress/gutenberg/issues/9534).

## Resources

- [Full Site Editing](https://github.com/WordPress/gutenberg/labels/%5BFeature%5D%20Full%20Site%20Editing) label.
@@ -179,6 +179,12 @@
"markdown_source": "../docs/designers-developers/developers/themes/theme-support.md",
"parent": "themes"
},
{
"title": "Block-based Themes (Experimental)",
"slug": "block-based-themes",
"markdown_source": "../docs/designers-developers/developers/themes/block-based-themes.md",
"parent": "themes"
},
{
"title": "Backward Compatibility",
"slug": "backward-compatibility",
@@ -959,6 +959,12 @@
"markdown_source": "https://raw.githubusercontent.com/WordPress/gutenberg/master/docs/designers-developers/developers/themes/theme-support.md",
"parent": "themes"
},
{
"title": "Block-based Themes (Experimental)",
"slug": "block-based-themes",
"markdown_source": "../docs/designers-developers/developers/themes/block-based-themes.md",
"parent": "themes"
},
{
"title": "Backward Compatibility",
"slug": "backward-compatibility",
@@ -31,7 +31,8 @@
{ "docs/designers-developers/developers/accessibility.md": [] },
{ "docs/designers-developers/developers/feature-flags.md": [] },
{ "docs/designers-developers/developers/themes/README.md": [
{ "docs/designers-developers/developers/themes/theme-support.md": [] }
{ "docs/designers-developers/developers/themes/theme-support.md": [] },
{ "docs/designers-developers/developers/themes/block-based-themes.md": [] }
] },
{ "docs/designers-developers/developers/backward-compatibility/README.md": [
{ "docs/designers-developers/developers/backward-compatibility/deprecations.md": [] },
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.