A few people have asked “how do I delete dates on my WordPress blog” and we’re going to cover that today.

Why would you want to do this anyway?

Well maybe you’ve bought a load of content and want to post all at once. But, the issue is, you don’t want it to look like you’ve just posted 20 articles to your blog which it will because the footprint are the dates.

Maybe you just don’t want the dates there.

MAybe you want the dates removed from your “PAGES” so they look more static.

Whatever your reason is, it’s an easy fix… Let’s get to it.

How to remove the dates from your posts and other places in your blog is done by editing your theme.

Always backup your theme just in case you mess something up, you can always re-upload your theme and get it right back to the way it was before you touched it.

If you need to learn how to backup your theme, leave a comment and I’ll teach you how.

OK, go ahead and login to your wordpress’s admin panel.

Find the link called “Design” and you’ll see a sub-link called “Theme Editor”. Click on that.

You should now be looking at something like the following.

1 shows, you are in the theme editor.

I’m going to remove all the dates from my blog here at idiotproofblogging.com so I will start with  “Page Template” by clicking on it (2).

Now I check to see if the page loaded by looking in the title (1).

Don’t freak out about all the code you’re now looking at.

What you’re looking for is the following:

<?php the_time('l, F jS, Y') ?>

Now change it to the following

<!--<?php the_time('l, F jS, Y') ?>-->

All you’ve done is added the following to the beginning

<!--

And the following to the end

-->

This is how you remove dates or anything else you want removed from your blog pages or posts.

Now just scroll down to the bottom and click “Update File” then go to a page to see if the date was removed. It should be :-)

If you want, go through each php page listed in the sidebar of your theme editor and do the same step above.

Make sure to clear out your internet browser cookies and hit refresh. Because if not, you may not see the changes and blame me saying it didn’t work.