Creating a child theme in WordPress is a great way to customize your site without losing changes when the parent theme updates. Here’s how to do it step by step. 1. Create a Child Theme Folder Using an FTP client or your hosting file manager, navigate to /wp-content/themes/ and create a new folder. Name it… Continue reading How to Create a WordPress Child Theme in Minutes
Category: php
How to Completely Disable Comments in WordPress with PHP
If you want to disable comments in WordPress entirely, whether for security reasons, performance, or to keep your site cleaner, the following PHP snippet provides a complete solution. This code removes all traces of comments from both the WordPress admin panel and the front-end. What Does This Code Do? How to Use It Simply add… Continue reading How to Completely Disable Comments in WordPress with PHP
Imitating a frequent cron job with php
Sometimes you may run into situation where you would need to set a cron job but your hosting provider doesn’t support them or only allows you to run scheduled jobs for example only once in hour when you would need to do a task more often. In my case I ran into latter case and… Continue reading Imitating a frequent cron job with php