The Gutenberg Component Autocomplete is an interesting one. You can use it to show a list of posts to choose from or any other list possible. In this tutorial we are going to learn the options for it and how it is used inside of Gutenberg.
Read MoreCategory: Gutenberg
Gutenberg Components: BaseControl
Gutenberg Component BaseControl is a component you won’t be seeing too much but it is one of the core components used in a lot of elements that you’ll use when creating your own Gutenberg blocks.
Read MoreHow to use the @wordpress/hooks package in JavaScript Apps
WordPress Plugin API (hooks) are a great way to make your plugins or themes extensible. And that is something that you can use when using PHP. But what if you’re using JavaScript? Maybe you want to make your JavaScript project extensible in a similar way. In this tutorial, we will see how to use those hooks in a React App.
Integrating Gutenberg Blocks in Existing WordPress Plugins
Gutenberg is coming and if your WordPress plugin is using shortcodes, you might consider building Gutenberg blocks out of the shortcodes. In this tutorial, we will not learn about converting shortcodes into Gutenberg blocks. We will learn how we can integrate Gutenberg blocks into your existing plugins.
How to create a Gutenberg Block for Displaying a Post
Gutenberg is coming and we need to be prepared for it. In this tutorial, we will learn how to create a block that will display a post.