Home/ Documentation/ WordPress/ Blocks/ Dynamic, Regular and ACF Blocks – What is the difference and when to use what?

Dynamic, Regular and ACF Blocks – What is the difference and when to use what?

What are dynamic and regular blocks? Which one is better?

WordPress supports two kinds of blocks: Regular JavaScript blocks and Dynamic PHP blocks.

At first glance, Dynamic blocks sound more fancy and powerful. But this is not always the case.

Note, Pinegrow can also create Hybrid blocks, that combine benefits of Regular and Dynamic blocks into one. Learn more.

Regular blocks

Regular blocks are implemented in JavaScript code that renders the block content directly in the WordPress block editor, right there in the browser. All changes are immediately visible and areas of the block (for example texts) can be directly editable. That’s why regular blocks provide the best user experience.

Dynamic blocks

Dynamic blocks, on the other hand, are rendered by PHP code on the server. Every time we change a property of such block in the block editor, the editor passes the attributes to the WordPress site, where the block PHP code outputs the block content and sends it back to the browser where it is displayed. This creates a noticeable delay when editing the block.

The content of dynamic blocks is also not directly editable. All changes need to happen through controls in the editor sidebar.

So, why do we need dynamic blocks then? 

Dynamic blocks can display up-to-date content from the WordPress database, for example the list of the last five posts. Dynamic blocks are rendered with PHP code on the server. That means we can use all server-side WordPress functions such as running queries, getting meta fields, user information and more. In Pinegrow, we can use all WordPress actions in dynamic blocks.

With regular blocks, the only actions we can use are Block attributes and Block inner content. If we add any other WordPress action to the block, Pinegrow will export it as a dynamic block, even if its block type is set to Regular.

Another important difference is that dynamic blocks are rendered each time they are displayed. This means that the information they display (for example, the list of the last five posts) will always be up to date, no matter how long ago the block was added to the page or post.

Regular blocks are rendered when the post is saved. If they contain any dynamic information acquired through JavaScript API calls, this information will not be refreshed until the post with the block is edited and saved again.

How to decide what block type to use?

Do you need to display any up-to-date information from the WordPress database? If yes, use a dynamic block.

Do you need to use any non-block WordPress action to display the block (for example, the name of the current user)? If yes, use a dynamic block.

In all other cases, create a regular block.

The best approach is to select the Regular block type in Pinegrow. If you then add any non-Block WordPress action to the block, Pinegrow will automatically export the dynamic block.

ACF Blocks

Pinegrow also supports creation of ACF PRO blocks. In addition to Block actions, you can also use Post field action with “Use ACF” checked to create editable fields.

Learn more about creating ACF blocks.



Last updated on June 30, 2023 at 5:32 am


Print this article