Turn Plain Text URLs into Active Links using PHP
I was putting together a bit of code to pull in a Twitter feed, similar to what you see in the footer of bavotasan.com. I got everything working properly but…
I was putting together a bit of code to pull in a Twitter feed, similar to what you see in the footer of bavotasan.com. I got everything working properly but…
Creating a page list in WordPress is super easy. All it takes is one function call: <?php wp_list_pages(); ?>. The only problem with the list is if you have…
Ever notice that certain comments end up out of order. I’ve encountered this issue on one of my posts and I think I discovered the cause. The problem is that…
I wanted to remove the images from a WordPress post to give me more control of how I could layout the design for the front page of a website. After…
I was just putting together a WordPress widget for a client and I came across a small road block. I was using <?php query_post(); ?> to set the loop to…
Using WordPress widgets for your sidebar really makes things easy on programmers and especially on users. The only problem I have come across is customizing the widgets so that they…