Free WordPress Resources for Developers
Check out ClioWP, my Free WordPress Starter Theme for Developers!
If you want to create an advanced Settings Page for your plugin, check out my free WordPress plugin ClioWP Settings Page WordPress Plugin! You can use it as a “boilerplate” to create your own plugin.
If you want to create a Gutenberg plugin, check my free ClioWP Blocks Boilerplate plugin.
It can be the basis for creating your own block-type plugin!
A WordPress Developer should have sufficient knowledge of React to create block-type plugins.
Read my free Guide: React for WordPress Developers!
Themes, Plugins, WordPress REST API, WP_Query, WP CLI, Custom Post Types, Custom Fields, CSS Tricks, Vanilla Javascript, Jquery, Settings API, Coding Standards, and everything you need to become a WordPress Developer!
Recent Posts
How to Add Conversion Tracking Code to Woocommerce Thank You Page
To add Conversion Tracking Code to Woocommerce Thank You Page (Google Ads in this example), and dynamically insert order values (eg amount, currency, order_id), use the following code in your…
I asked chatGPT: How to upgrade Universal Analytics to GA4
After I published the article “How to upgrade Universal Analytics to GA4”, I asked chatGPT the same question. Here is the answer: Here are the steps to upgrade your Universal…
How to Upgrade Universal Analytics to GA4 Step by Step
You have to upgrade Universal Analytics to GA4 until July 1, 2023. According to Google: Google Analytics 4 is an analytics service that enables you to measure traffic and engagement…
WordPress Maintenance Mode (with and without plugin)
WordPress Maintenance Mode is needed when we want to perform major changes in our WordPress site (custom code and/or database changes), so the front end of the site should not…
How to Run Apache as different User with mpm-itk
Run Apache as different User is quite useful in WordPress development and WordPress hosting. Apache runs as www-data in Debian/Ubuntu. However, this is not convenient in a WordPress installation: On…
How to Upgrade PHP on WordPress Step by Step
Upgrade PHP on WordPress is a common task when you run a WordPress server. Some essential plugins (for example RankMath SEO) may not run with the current Debian PHP version….
Packages Autocomplete with apt in Debian or Ubuntu Docker Container
Packages Autocomplete does not work in Docker containers after a basic build, even if you have installed bash-completion. Packages cache is disabled to save space, as it is supposed that…
Most Commonly Used WordPress Functions. The Ultimate Cheatsheet
WordPress Functions are the tools to build an amazing WordPress Site. You can find an official list by category in the Codex and a complete alphabetical list in the WordPress…
What’s wrong with this footer.php file?
Try to find out what’s wrong with this footer.php file. Here is the code of the footer.php: <?php /** * The template for displaying the footer * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials…
How To Create A Child Theme For WordPress In 5 Minutes (with live example)
Child Theme is also a WordPress Theme that inherits the design and the functionality of another theme (the Parent Theme). It is extremely useful in WordPress development because it permits…