Category Archives: Design Hacking

WordPress Hacks – How to Remove Date from Posts

If you want to remove date from appearing on your blog posts, just delete the following snippet of codes from the /wp-content/themes/index.php page. 1 2 3 <div class="date"> <p><?php the_time(‘F j, Y’); ?></p> </div><div class="date"> <p><?php the_time(‘F j, Y’); ?></p> </div> If your theme has single.php, page,php, archives.php, find the codes and delete them too.… Read More »

How to Number Your Comments

Lets say you have a fairly popular blog, but you want to follow the discussions that go on in the comments section. Instead of depending on that small avatar to find where you posted, here is an easy way to number all of the comments made on a post. I have included this on my… Read More »

How to Make Header Images Random

So you want to make the header images on your blog random huh? Well, you can do this extremely easy. Here are the steps to achieve this simple task. 1) Get the Images Okay, get 4 images that you want to use on your blog. Here’s what I’ll be using: header1.jpg header2.jpg header3.jpg header4.jpg Put… Read More »