Installing WordPress Multisite isn’t the hard part – it’s getting your head around how to use it, especially if you’ve mostly been using single installs. In this quick tour I want to...
Learn MoreInstalling WordPress Multisite can give your site the benefit of being part of a network. I use this feature to spawn multiple installations that live on the same domain. It makes my life so much easier to...
Learn MoreCreating a recurring automatic function in WordPress used to be one of the most difficult things for me to understand. Several articles out there explain how to do it, yet I always forgot the concepts when...
Learn MoreMany complex things are extremely simple in PHP – sending mail is one of them. Here’s how: // components for our email $recepients = 'you@somewhere.com'; $subject = 'Hello from...
Learn MoreBefore we execute a shell command from PHP it’s a good idea to test if the server will respond to it. We can do this by making use of the empty() function. The following example consists of a helper...
Learn More