Markup representation of a block

Blocks are stored in the database or within HTML templates using a unique HTML-based syntax, distinguished by HTML comments that serve as clear block delimiters. This ensures that block markup is technically valid HTML.

Here are a few guidelines for the markup that defines a block:

  • Core blocks begin with the wp: prefix, followed by the block name (e.g., wp:image). Notably, the core namespace is omitted.
  • Custom blocks begin with the wp: prefix, followed by the block namespace and name (e.g., wp:namespace/name).
  • The comment can be a single line, self-closing, or wrapper for HTML content.
  • Block settings and attributes are stored as a JSON object inside the block comment.

The following is the simplified markup representation of an Image block:

<!-- wp:image {"sizeSlug":"large"} -->
<figure class="wp-block-image size-large">
    <img src="source.jpg" alt="" />
</figure>
<!-- /wp:image -->

The markup for a block is crucial both in the Block Editor and for displaying the block on the front end:

  • WordPress analyzes the block’s markup within the Editor to extract its data and present the editable version to the user.
  • On the front end, WordPress again parses the markup to extract data and render the final HTML output.
Refer to the Data Flow article for a more in-depth look at how block data is parsed in WordPress.

When a block is saved, the save function—defined when the block is registered in the client—is executed to generate the markup stored in the database, wrapped in block delimiter comments. For dynamically rendered blocks, which typically set save to null, only a placeholder comment with block attributes is saved.

Here is the markup representation of a dynamically rendered block (save = null). Notice there is no HTML markup besides the comment.

<!-- wp:latest-posts {"postsToShow":4,"displayPostDate":true} /-->

When a block has a save function, the Block Editor checks that the markup created by the save function is identical to the block’s markup saved to the database:

  • Discrepancies will trigger a validation error, often due to changes in the save function’s output.
  • Developers can address potential validation issues by implementing block deprecations to account for changes.

As the example above shows, the stored markup is minimal for dynamically rendered blocks. Generally, this is just a delimiter comment containing block attributes, which is not subject to the Block Editor’s validation. This approach reflects the dynamic nature of these blocks, where the actual HTML is generated server-side and is not stored in the database.

Additional resources