Menu
- [WordPress] How to Add Colors to Color Palette in Gutenberg Block Editor in 2024
- Add colors to the existing color palette in the WordPress Gutenberg editor.
- Or completely replace the existing color palette.
Integrate the code into your theme or a plugin.
- [WordPress] How to Replace Category Pages With Static Pages Programmatically
Replace your category pages with static pages just with a few lines of code:- Add a static page. Do not publish it.
- Modify the category template.
- Apply CSS styles if necessary.
- [WordPress] How to Add a Sidebar Programmatically in 2024
To create a sidebar:- Register the sidebar with
register_sidebar()
. - Add the sidebar to your theme template with
dynamic_sidebar()
.
- Register the sidebar with
- How to Use WordPress Docker Container for Testing Themes and Plugins Locally
Test WordPress themes and plugins locally in Docker containers before deploying them on production:- Install WordPress quickly with Docker Compose.
See the example ofdocker-compose.yml
. - Reinstall WordPress in a Docker container easily.
- Install WordPress quickly with Docker Compose.
- [WordPress] Show Extended Information in the Plugin Query Monitor With No Symlink to db.php
Show extended query information in the WordPress plugin Query Monitor even when a symbolic link to the filedb.php
can not be created. - How to Add XDebug to the Official Docker WordPress Image
Use a Dockerfile to add XDebug to the official Docker WordPress image:- Build your own WordPress image with XDebug enabled.
See examples ofDockerfile
anddocker-compose.yml
. - Do not want to build? Download a pre-made image from a repository on Docker Hub.
- See how to configure PhpStorm for debugging.
- Learn how to separate production and development environments using multiple Docker Compose files.
- See how to use Nginx in Docker as a Reverse Proxy.
- See how to add PHP extensions to the Docker WordPress Image.
- Build your own WordPress image with XDebug enabled.
- [VirtualBox] Configure an Ubuntu 22.04 / 20.04 Virtual Machine for Web Development (Complete Guide)
The complete guide on creating a VirtualBox VM for web development. See how to- Create Ubuntu 22.04 / 20.04 VirtualBox virtual machines.
- Configure the network on a bridged adapter or 2 adapters: NAT + host-only.
- Install Guest Additions.
- Share folders between the host machine and the virtual machine.
- Optimize performance.
- [Docker] How to Set up Postfix Containers and Send Emails From WordPress in Docker
Add SMTP mail functionality to a Docker WordPress image. See how to