A block’s front-end markup can either be dynamically generated server-side upon request (dynamic blocks) or statically generated during the save process in the Block Editor (static blocks). This article explores each method.
Static rendering
Blocks with “static rendering” produce front-end output that is fixed and stored in the database upon saving. These blocks rely solely on their save
function to define their HTML markup, which remains unchanged unless manually edited in the Block Editor.
If a block does not use a dynamic rendering method—meaning it doesn’t generate content on the fly via PHP when the page loads—it’s considered a “static block.”
The diagram below illustrates how static block content is saved in the database and then retrieved and rendered as HTML on the front end.
How to define static rendering for a block
The save
function, which can be defined when registering a block on the client, specifies the block’s HTML structure that gets saved in the database whenever you save the block in the Editor. This saved HTML is then used to display the block on the front end.
Blocks in WordPress are encapsulated within special comment tags that serve as unique block delimiters. However, only the HTML defined in the static block’s save
function—excluding these delimiters—is rendered.
View an example of static rendering in the Preformatted block
The following save
function for the Preformatted core block looks like this:
import { RichText, useBlockProps } from '@wordpress/block-editor';
export default function save( { attributes } ) {
const { content } = attributes;
return (
<pre { ...useBlockProps.save() }>
<RichText.Content value={ content } />
</pre>
);
}
The function generates the following markup representation of the block when attributes.content
has the value "This is some preformatted text"
:
<!-- wp:preformatted -->
<pre class="wp-block-preformatted">This is some preformatted text</pre>
<!-- /wp:preformatted -->
On the front end, the block will return the following markup. Notice how the delimiters are no longer present.
<pre class="wp-block-preformatted">This is some preformatted text</pre>
Dynamic blocks, which we’ll explore in the following section, can specify an initial HTML structure through a save
function, similar to static blocks. However, dynamic blocks primarily rely on server-side rendering to generate their content. If, for any reason, the dynamic rendering isn’t available—perhaps due to the block’s plugin being deactivated—the system will fall back to using the HTML structure saved in the database to display the block on the front end.
For a practical demonstration of how this works, refer to the Building your first block tutorial. Specifically, the Adding static rendering section illustrates how a block can have both a saved HTML structure and dynamic rendering capabilities.
render_block
and the render_callback
function to alter the saved HTML of a block before it appears on the front end. These tools offer developers the capability to customize block output dynamically, catering to complex and interactive user experiences.
Additional examples of WordPress blocks that use static rendering, meaning their output is fixed at the time of saving and doesn’t rely on server-side processing, include:
Dynamic rendering
Blocks with “dynamic rendering” are designed to generate their content and structure in real-time when requested on the front end. Unlike static blocks, which have a fixed HTML structure saved in the database, “dynamic blocks” rely on server-side processing to construct their output dynamically, making them highly versatile and suitable for content that needs to be updated frequently or is dependent on external data.
The diagram below illustrates how the representation of a dynamic block is saved in the database and then retrieved and dynamically rendered as HTML on the front end.
There are some common use cases for dynamic blocks:
- Blocks where content should change even if a post has not been updated: An example is the Latest Posts block, which will automatically update whenever a new post is published.
- Blocks where updates to the markup should be immediately shown on the front end: If you update the structure of a block by adding a new class, adding an HTML element, or changing the layout in any other way, using a dynamic block ensures those changes are applied immediately on all occurrences of that block across the site. Without dynamic blocks, similar updates could trigger validation errors in the Block Editor.
How to define dynamic rendering for a block
A block can define dynamic rendering in two main ways:
- Using the
render_callback
argument that can be passed to theregister_block_type()
function. - Using a separate PHP file usually named
render.php
. This file’s path should be defined using therender
property in theblock.json
file.
Both of these methods receive the following data:
$attributes
: The array of attributes for the block.$content
: The markup of the block as stored in the database, if any.$block
: The instance of the WP_Block class that represents the rendered block (metadata of the block).
View an example of dynamic rendering in the Site Title block
The Site Title block uses the following render_callback
:
function render_block_core_site_title( $attributes ) {
$site_title = get_bloginfo( 'name' );
if ( ! $site_title ) {
return;
}
$tag_name = 'h1';
$classes = empty( $attributes['textAlign'] ) ? '' : "has-text-align-{$attributes['textAlign']}";
if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) {
$classes .= ' has-link-color';
}
if ( isset( $attributes['level'] ) ) {
$tag_name = 0 === $attributes['level'] ? 'p' : 'h' . (int) $attributes['level'];
}
if ( $attributes['isLink'] ) {
$aria_current = is_home() || ( is_front_page() && 'page' === get_option( 'show_on_front' ) ) ? ' aria-current="page"' : '';
$link_target = ! empty( $attributes['linkTarget'] ) ? $attributes['linkTarget'] : '_self';
$site_title = sprintf(
'<a href="%1$s" target="%2$s" rel="home"%3$s>%4$s</a>',
esc_url( home_url() ),
esc_attr( $link_target ),
$aria_current,
esc_html( $site_title )
);
}
$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => trim( $classes ) ) );
return sprintf(
'<%1$s %2$s>%3$s</%1$s>',
$tag_name,
$wrapper_attributes,
// already pre-escaped if it is a link.
$attributes['isLink'] ? $site_title : esc_html( $site_title )
);
}
However, there is no save
function defined for this block, as you can see from its index.js
file, which means the markup representation of the block in the database looks like this:
<!-- wp:site-title /-->
On the front end, the render_callback
is used to dynamically render the markup for the block depending on the specific values on the server at the time the block is requested. These values include the current site title, URL, link target, etc.
<h1 class="wp-block-site-title"><a href="https://www.wp.org" target="_self" rel="home">My WordPress Website</a></h1>
HTML representation of dynamic blocks in the database (save)
For dynamic blocks, the save
callback function can return just null
, which tells the editor to save only the block delimiter comment (along with any existing block attributes) to the database. These attributes are then passed into the server-side rendering callback, which will determine how to display the block on the front end of your site.
When save
is null
, the Block Editor will skip the block markup validation process, avoiding issues with frequently changing markup.
Blocks with dynamic rendering can also save an HTML representation of the block as a backup. If you provide a server-side rendering callback, the HTML representing the block in the database will be replaced with the output of your callback but will be rendered if your block is deactivated (the plugin that registers the block is uninstalled), or your render callback is removed.
In some cases, the block saves an HTML representation of the block and uses a dynamic rendering to fine-tune this markup if some conditions are met. Some examples of core blocks using this approach are:
- The Cover block saves a full HTML representation of the block in the database. This markup is processed via a
render_callback
, which dynamically injects the featured image if the “Use featured image” setting is enabled. - The Image block also saves its HTML representation in the database. This markup is processed via a
render_callback
, which adds additional attributes to the markup if specific conditions are met.
If you are using InnerBlocks in a dynamic block, you will need to save the InnerBlocks
in the save
callback function using <InnerBlocks.Content/>
.
Additional resources
- Static vs. dynamic blocks: What’s the difference? | Developer Blog
- Block deprecation – a tutorial | Developer Blog