-
Creating Gutenberg blocks with Advanced Custom Fields
•
Continue Reading: Creating Gutenberg blocks with Advanced Custom FieldsPlaying with Gutenberg can be fun. But creating blocks in JavaScript can be tough. But ACF will be giving developers help in the future.
-
Object-oriented programming in a Gutenberg world
•
Continue Reading: Object-oriented programming in a Gutenberg worldSo now that we know why object-oriented programming might be good for your next WordPress plugin, let’s try it with a plugin that creates custom Gutenberg blocks.
-
Object-oriented programming in WordPress plugins
•
Continue Reading: Object-oriented programming in WordPress pluginsCreating a WordPress plugin is pretty simple. It’s just another functions.php file, right? But what if you tried creating a plugin with object-oriented programming.
-
Changing a shortcode to a dynamic Gutenberg block
•
Continue Reading: Changing a shortcode to a dynamic Gutenberg blockGutenberg is coming, and it will shake up the ecosystem. One of the biggest changes will come with shortcodes, since the TinyMCE editor will be no more. But it’s pretty easy to turn shortcodes into the blocks with dynamic blocks.
-
Adding filter and action hooks to your WordPress plugin
•
Continue Reading: Adding filter and action hooks to your WordPress pluginWordPress is known for its customizations, but sometimes as plugin or theme developer, it can be tricky to figure out how to let your users add in customizations. That’s where filters and hooks come into play.
-
How to add a WordPress admin page to add data to a custom table
•
Continue Reading: How to add a WordPress admin page to add data to a custom tableSo you have a custom table, but how do you get data in there the WordPress way? This tutorial shows you how to create an admin page and insert data into that table.
-
How to create a custom table in WordPress and why
•
Continue Reading: How to create a custom table in WordPress and whyWordPress comes with a number of basic tables created in your site’s database. But sometimes those tables aren’t quite enough. And sometimes a custom table is needed.
-
A simple guide to adding a WP REST API controller
•
Continue Reading: A simple guide to adding a WP REST API controllerThe WP REST API is still a hot item in WordPress core. And this tutorial will show you how easy it is to make your own REST API endpoint for your plugin and custom data.