Here’s a fun little trick. When looping over an array, you can access the values by reference. Instead of: foreach ($things as $i => $thing) { $things[$i] = strtolower($thing); } You can reference the values of the array: foreach ($things … Continue reading
Archive for the ‘Web Development’ Category
Serving Multiple WordPress Blogs from a Single Installation (Without WP MU)
I’m serving multiple WordPress blogs on separate domains from a single installation, but without using WordPress MU (multi-user). Yes, I realize you can probably do everything I’ve done here by using WPMU. However, in my situation: I had already installed … Continue reading
Testing FeedWordPress Post Syndication
I am planning to use Phillip Harrington dot com to post multiple topics. I also want these topics fed to other sites. To that end I found the amazing FeedWordPress plugin, and so far I am magnificently happy with it. … Continue reading