Exciting News! Flipper Code is now WePlugins! Same commitment to excellence, brand new identity.

A Step-by-Step Guide to Block Development in WordPress

Sandeep Kumar Mishra
Sandeep Kumar Mishra
July 18, 2024
5 minutes read
A Step-by-Step Guide to Block Development in WordPress

In this tutorial, you’ll learn how to start block development in WordPress in easy steps. Block development in WordPress centers on a Block-based content editor known as the Gutenberg Editor. The Gutenberg editor uses blocks to create content and offers more flexible and visually consistent content than the classic editor. It is a more modern and advanced editor that replaced the traditional classic editor.

Importance of Gutenberg Blocks

Access Blocks in Block Editor

  • Gutenberg blocks have an intuitive interface and are user-friendly, making it easy to modify content without the knowledge of coding skills.
  • It is also very flexible, it allows for the easy rearrangement and customization of blocks
  • It allows for the reuse of block layouts, thereby speeding up content creation.
  • Gutenberg editor ensures a consistent editing experience across various content and pages.
  • It also allows embedding videos, images, and likes from various sources like YouTube, Twitter, and Instagram.
  • Developers can easily create custom blocks tailored to specific needs
  • It also encourages modern development practices via the usage of JavaScript, react, and many other relevant technologies
  • The importance of Gutenberg is not limited to the above, it represents an advancement in WordPress that brought about extensive benefits both to users and developers even businesses and the broader digital landscape.

This guide is meant for developers, freelancers, educators, content creators, technical content creators, and WordPress enthusiasts.

What are the prerequisites for Block Development in WordPress?

To develop blocks effectively, you need to know several programming languages which include;

  • React
  • HTML/CSS/JAVASCRIPT
  • PHP

The Development Environment setup

To develop an environment for block and WordPress development you need the following.

Understanding Gutenberg Blocks.

Gutenberg blocks are the basic/primary units of content within the WordPress block editor. It was introduced to WordPress in version 5.0. It provides a more flexible and visual way to create content using the block-based approach. It has changed how content is created and managed in WordPress, its approach to content creation and management is more modernized. It enhances your experience as a user with extensive customization choices and a broad range of content layouts and types.

The Gutenberg Block Editor differs significantly from the Site Editor, and understanding these differences is crucial. Read our comprehensive guide on Site Editor vs. Block Editor to learn more.

Anatomy of a Block

Now let’s take a look at the Key components and structure of a Block.

A block is known to be the modular unit of content that can be inserted, edited, rearranged, and styled within a WordPress block editor. In simple terms, they are the smallest unit of content that can be integrated to form a whole content. However, they can act independently.

Key Components of a Block:

The key components of a block include;

  • Block types e.g Paragraph block
  • Content area for the input and editing of content
  • Block tools bar
  • Block setting
  • HTML output
  • Style and classes
  • Reusable blocks

Structure of a block

Each block is structured to have save functions, edit functions, attribute functions (appearance), styles functions, metadata, Icon, and categories.

Block types

There are various types of blocks in the WordPress block editor they include;

  • Common blocks e.g. paragraph blocks, heading blocks, list blocks, image blocks, and likes. Mostly used for writing introductions, and headings, it is also used to insert photos, illustrations, graphics, etc. It can also be used for itemizing lists in a bulleted or numbered form.
  • Layout Element Blocks e.g. column block. It can be used to create multiple columns and join multiple blocks together for styling and layout reasons.
  • Formatting blocks e.g. code block. A code block can be used to display code snippets and also to embed custom HTML code.
  • Widget blocks e.g. Archive block. Widget blocks are conventionally used to display recent comments, for showing a list of posts achieved by month or year.
  • Reusable blocks. This allows for the re-usage of blocks or layouts across multiple posts or pages.
  • Embedding blocks for adding content from other platforms, highlighting recent blog posts or updates, and embedding YouTube videos to enhance multimedia content.
  • Experimental blocks. This block is used for testing new features.

There are other different types of blocks but for this blog, this should suffice. To learn more about using these blocks, check out our post on the basics of the block editor.

Setting Up Development Environment

WooCommerce Reminder Pro Plugin

WooCommerce Reminder Pro

Automate WooCommerce payment reminder emails today - in 10 minutes or less, no coding required.
Get Instant Access - Download Now

The first thing to do when setting up your development environment is to install the required software (Node.js and npm). For you to install this visit the official Node.js website, when you visit the site you will see a button for download, download it, and install it on your PC.

The next thing to do is to install WordPress if you haven’t before.

Create Your First Block

To create the project structure of your first block, you need to go to the plugins directory to navigate to your local WordPress installation (wp-content/plugins) directory.

The next step is to create a new directory called my-first block!!, Then you create the main plugin file.

In the my-first block!! directory you created, create a file named my-first-block.php!!.  

After, you add the following code.

  • For the plugin header.
    Define Plugin Header in Block Development in WordPress

    • For the above image, the plugin name was the name used for the creation of your plugin file.
    • For the description, briefly describe what your plugin does.
    • The version aspect is for the version number of your progress.
    • As for the Author, it has to be you just like in this case my name is displayed here.
  • Security check
    Security Check in Block Development in WordPress

    • This security code ensures that your plugin file is not accessed directly by someone trying to access your URL file directly.

Registering your block

Registering your block in Block Development

I will be using the above picture to explain how the registration is done.

This is the block registration function (my_first_block_register_block). After getting the function, you register the custom block using (register_block_type). Having done that, register_block_type(__DIR__  . ‘/src/block.json’ ); to do this, you need to provide a path to the ‘block.json’ file located in the ‘src’ directory of the plugin.

Moving on to the basic block creation with create-guten-block.

Create-guten-blocks is a straightforward way to create a Gutenberg block for WordPress. It is straightforward because it provides a pre-configured development environment with essential files and directories. In simple terms, you don’t have to go through the process of creating a plugin directory and plugin file.

How to create blocks with create-guten-block.

First thing first install Node.js and npm. I have previously explained how you install it.

Then you go to your terminal and install create-guten-blocks using npm.

create-guten-blocks installations

Then you create a new block project by running this code.

create a new block using create-guten-block

You can edit the (my-first-block) to the name of your project.

The next is to construct the project structure.

Make sure your project structure looks like this.

project structure in block development

When it is like this it means that you have successfully created a block with create-guten-block

Let me explain the code above.

  • plugin.php: The main PHP file that registers your block as a WordPress plugin.
  • src/block/: The directory that contains the JavaScript files for your block’s functionality.
    • edit.js: Defines the block’s editor interface (what you see in the Gutenberg editor).
    • index.js: Registers the block and binds everything together.
    • save.js: Defines how the block’s content is saved and displayed on the front end.
  • src/style.scss: Contains the styles for the block on the front end.
  • src/editor.scss: Contains the styles for the block within the editor.

Developing Custom Blocks

How to develop custom blocks.

We will be looking at how to customize the block edit component, add block attributes, implement block controls and inspector settings, and save and render block content.

Customizing the block edit component

Scroll to your block’s directory and open the edit.js file located in src/block/ after you have defined the block attribute for your. It is in this file that you’ll define the block’s editor interface for your block. Attributes are mainly used to manage and store the data of your block.

Your code should look like something like this.

customizing the block edit component

With this, you have been able to define the content,bgColor, custom class, and imageUrl (attributes) where you store the main text content of the block, the background color of the block, the custom CSS class names for the block, and the URL of an image that is to be uploaded. After you have successfully defined your attribute the next is to modify the (edit.js file) to determine how the block will appear in the block editor.

Adding block attributes,

  1. Define the attribute you want in a block with each having a type, a source, a selector, and a default value. However, the type is very compulsory while the rest are optional. All this can be done in the ‘index.js’ file.
  2. Use the attribute specified to create an interface for editing the block. To do this, go to the ‘edit.js’ file. Components like the rich text and media upload can be used for editing the block.
  3. The next thing is the saving aspect. Go to the ‘save.js’ file to define how the attributes are to be saved and rendered on the front end.

Implementing block controls and inspector settings.

To implement block controls and inspector settings, you must create a PHP file to register your blocks. This file will allow for the addition of the necessary scripts.

The next thing is to create a file named (custom block.php). The next important step is to create a file named (block.js) and make sure it is in the same directory as your PHP file. This is where you will be able to implement the usage of JavaScript, and it will be used to define your custom block and its inspector settings.

Saving and rendering block content.

To save a block content, you will have to create a save function. The save function is where you determine how you block content to be saved and also displayed. It also defines how your content is to be rendered on a custom block.

Create a save.js file. Your code should look like the one below.

saving and rendering block content

Also, locks have a default save function for a custom block which you can also use.

Styling Your Blocks

To style the blocks you make of CSS you apply CSS to the editor and the front end after you have created a CSS file. Then you enqueue the file in the registration script of your block, enqueue means to register and load a script.

The next thing to do is to use the useBlockProps function to apply classes and styles in both the edit.js and save.js files.

How do you manage styles for the editor and front end separately?

It is important to manage your style for the editor and front end separately because it ensures that both are correct in their context.

Here are the steps.

  1. Create a separate file for each. One for the editor and one for the front end.
  2. Enqueue them separately. Use enqueue_block_editor_assets for the editor, and wp_enqueue_scripts for the front end.
  3. Then you edit and save using your edit and save function.

There are some other Preprocessors that extend the functionalities of CSS some of them include; Sass, Less, PostCSS, and like.

Advanced Block Development

The usage of the React component on your blocks.

React components are reusable pieces of code that do the description of a part of the user interface in a React application.

There are two types of React components, they include;

Class and Function react components.

The class react component determines the usage of class ES6.

The function react component determines the usage of JavaScript functions.

To create a react component, it is important to know which of the types you are creating.

The function react component is easy to create and is used when you don’t want to manage methods. While class react is used when you want to manage methods.

Handling dynamic data with API requests

Here are the steps involved in handling dynamic data with API requests.

  1. Decide which of the Https library to use for the request. You can use Axios but it is optional.
  2. Decide which of the components to use to fetch and display the request from the API. In other words, decide whether to use class or function component.
  3. After, you then fetch the data from API.
  4. Then you test to check if the API has been integrated. To know if it has been successfully integrated or not, or if it has an error or still loading.
  5. After it is successfully integrated, then you build and deploy to your host environment.

 

Enhancing Block Development

When you talk about enhancing the functionality and customization options of a custom block then you are referring to custom control and inspection panel.

Custom Control allows for direct integration into the block toolbar or sidebar. custom controls allow users to customize the block’s settings or content directly within the editor interface, and they include;

  • Color picker for color
  • Text control for text
  • Checkbox control
  • Select-control
  • Toggle control

Inspector Panel: they are sections within the block sidebar that provide a more detailed view or editing capabilities beyond what is made available in the toolbar of the block. They have additional settings related to the block. However, they are defined using a panel body from the WordPress component library.

Handling Media Uploads and External Resources

Before you handle any media uploads, you first need to add some features that encourage users to upload media files like videos, images, and likes, and also add links to an external resource e.g. URLs.

Handling media uploads and external resources

WordPress provides built-in support for handling media uploads through the Media Library. Custom blocks can leverage this functionality using the MediaUpload component from @wordpress/block-editor and @wordpress/components.

How to Implement Inner Blocks for Nested Content

A nested content is referred to as a content structure where elements are embedded in other elements hierarchically. It allows for the embedding of blocks within another block. Thereby creating more complex and organized layouts.

How do you implement it? To implement an inner block for nested content, you are required to get two blocks.

  1. The parent block
  2. The inner block

After you have gotten the blocks, you then register the parent block. To do this, Simply create a Javascript file for your block and name it parent-block.js. After the registration is successful, you specify the block you want to be nested inside the parent block in the InnerBlocks component, your code should look like this.

Implement inner blocks for nested content

The next thing is to style the block. You can style the block by creating a CSS file to style both the parent block and the nested block.

However, note that you can separately register the parent clock and the nested block if the block to be nested is a custom clock and this brings us to the end of the implementation of the inner block for nested content.

Testing and Debugging

Testing and debugging is a very important part of block building, it is crucial for ensuring that all errors and bugs are fixed right from their root cause. It also ensures that blocks are fully optimized, and it ensures that your blocks behave in the expected way in various scenarios.

Testing blocks in different environments: blocks can be tested in various environments ranging from the local environment, themes, various plugins, different WordPress versions, different browsers, different devices, different operating systems, and the like.

To test your block in the local environment: you install the script for building and testing blocks that are compatible with your local environment and run the test.

To test with various browsers, you can use Google Chrome, Mozilla Firefox, Safari, and likes. Use the developer tool of any of the above browsers to test your blocks for any errors or bugs.

Testing it for various WordPress versions:

 Run your block in any of the WordPress versions be it the previous or latest version to test for bugs and errors. You can also test with themes like the Twenty-Twenty-one or Twenty-twenty-two.

Common Block errors or issues and how to debug them

  1. Issue of Compatibility: this is when there are conflicts with any of the themes, plugins, or other functionalities. To resolve the issue of non-compatibility, you make use of either Cross-Browser testing or step-by-step execution.
  2. Accessibility issue: This occurs when blocks are difficult to use with screen readers. Some blocks cannot be easily navigated using a keyboard. To solve any issue with accessibility, do manual testing, this is when you test your site using only your keyboard. Use a JAWS screen reader to test how your contents are being read.
  3. Issues of Performance: This is When the blocks are not loading fast. The technique most developers use in resolving this is the browser developer tool.
  4. We have the styling issues, Security issues, and Rendering issues. The techniques for resolving them include Console logging, network monitoring, and step-by-step execution.

Note: the issues and debugging techniques are not limited to the aforementioned.

Tools for testing and debugging block plugin

Here are some of the reliable testing tools because I have been using them for quite some time now. They include

  1. Jest: jest has proven to be very reliable regarding block testing. It is a Javascript testing framework maintained by Facebook. It has some built-in functions and a powerful mocking ability.
  2. Cypress: Cypress is a very reliable testing tool used for testing user flow and interactions. It is an end-to-end testing framework that provides a fast testing service.

Debugging Tools

They include:-

VScode: The VScode supports various programming languages including javascript, it uses code to identify and fix errors.

There are many other debugging tools they include. Logfile,  PHP error debug, and many others.

However, I prefer using VScode for its programming capabilities.

Plugin for testing block development in WordPress

They include;

  • WP test
  • PHP unit
  • WP browser
  • MonsterInsight

Plugins for debugging

  • Debug bar
  • Query Monitor
  • WP control
  • WP logging
  • User switching
  • WP debug

Optimizing Block Performance

The performance of custom blocks or any other blocks can be optimized.

Optimization of performance is crucial for smooth running and maintaining the overall speed and user experience. It allows for quick loading.

Some of the best practices used in performance optimization include.

  • Loading scripts and styles on pages only when needed to avoid unnecessary loading of scripts and styles where they are not needed.
  • Avoid over-fetching: fetch only needed data
  • Usage of cache
  • Remove any unused CSS, JavaScript, or any other unused file.
  • Testing is also one of the best practices for block optimization. It allows the auditing of performance.
  • The handling of images in an effective way is also a way to optimize performance. The usage of Srcets and Size attributes for responsive images is very much encouraged.
  • The network used for delivering content has to be considered also some CDNs are better compared to others. So it is advisable to evaluate which teCDN to use based on some factors like performance, cover features, and pricing.
  • Others include profiling and optimized rendering. etc.

Deploying Your Block

After you have done your final review checking, your content accuracy, grammar and style, and must have performed various testing and debugging, the next thing to do is to deploy your blocks. Before deploying, make sure all necessary content is backed up. Then set up the environment to make sure it is ready for the new development. Deploy your block to a staging or testing environment and verify that it works perfectly with the testing environment and that the block integrates well with other components of the system, you conduct a final review deploy the code, and merge it into the main branch and drag it to the production server.

Writing documentation for your block

When writing documentation for your block, it is important to note your document structure, use simple language, highlight the important parts, and make use of images.

Here are the steps to take.

  1. Determine the end user of your documentation as this will help in your structuring.
  2. Gather and prepare relevant information like block features, block functionalities, etc.
  3. Outline necessary sections in the table of contents.
  4. Give a detailed description of how to configure blocks, and extend block functionality. It is advisable to use examples and snippet code in your description.
  5.  You can provide answers to some FAQs.
  6. Then you draft your acknowledgement.
  7. Review and test your documentation.

Submitting your blocks to the WordPress Plugin Repository

After you have thoroughly tested your block to ensure it is stable and bug-free, and it adheres to WordPress coding standards and best practices, you include the (readme.txt) file and the (Plugin PHP), Javascript file, and likes.

To upload the plugin on wordpress.org,  go to the WordPress plugin submission page, and fill out the form with your plugin details, including the plugin name, description, and a link to your plugin’s zip file, and submit. An approval mail will be sent to you it contains your SVN repository details.

Once your plugin is approved, Use the SVN to upload the plugin on wordpress.org and place your files & folders in the trunk folder.

svn plugin directory structure in wordpress.org

Create a tag for release in the tags directory and verify if your file and information have been uploaded. Make sure that all files and information are correctly displayed. To do this, check your plugin page on the WordPress plugin repository.

Conclusion

In conclusion, when dealing with a block editor, there are some things you should always take note of and they include;

Having basic knowledge about block editors, and developing the right environment setup like node. js,npm, etc., pay close and meticulous attention to your block structure and component, and try as much as possible to make use of advanced customization like react, do not in any way forget to test and debug, styling and customization should be properly done, and write clear documentation and prepare your blocks for deployment making sure it complies to WordPress coding standard and submit to WordPress plugin repository.

{
“@context”: “https://schema.org”,
“@type”: “BlogPosting”,
“mainEntityOfPage”: {
“@type”: “WebPage”,
“@id”: “https://weplugins.com/a-step-by-step-guide-to-block-development-in-wordpress/”
},
“headline”: “A Step-by-Step Guide for Block Development in WordPress”,
“description”: “Want to learn block development in WordPress? Check out this guide! This tutorial takes you from basics to advanced tips for creating custom blocks.”,
“datePublished”: “2024-07-11”,
“dateModified”: “2024-07-11”,
“author”: {
“@type”: “Person”,
“name”: “Sandeep Kumar”
},
“publisher”: {
“@type”: “Organization”,
“name”: “WePlugins”,
“logo”: {
“@type”: “ImageObject”,
“url”: “https://weplugins.com/wp-content/uploads/2023/10/weplugins-footer-logo.png”
}
},
“image”: “https://weplugins.com/wp-content/uploads/fly-images/105473/guide-to-block-development-in-wordPress-1170×540-c.webp”,
“articleSection”: “WordPress, Tutorials, Block Development”,
“keywords”: “WordPress, Block Development, Block Editor, WordPress Tutorial”,
“url”: “https://weplugins.com/a-step-by-step-guide-to-block-development-in-wordpress/”
}

Sandeep Kumar Mishra

Sandeep Kumar Mishra

Sandeep Kumar Mishra writes about WordPress and Artificial Intelligence, offering tips and guides to help you master your website and stay updated with the latest tech trends.

Explore the latest in WordPress

Trying to stay on top of it all? Get the best tools, resources and inspiration sent to your inbox every Wednesday.