February 2, 2008
This article explains how you can make simple but useful customizations to your WordPress footer. I’ll illustrate the process with one practical example - the example of putting a copyright notice in the footer which will automatically update itself year after year and you’ll never have to bother about it again.
I have noticed and, you might have noticed as well, that many webmasters put a copyright notice in the footer that does not show the current year 2008 but may show the year as 2007, 2006 etc. That happens because the webmasters have put in the notice manually and then forgot to update it. With WordPress powered website, you can easily automate the process and your copy right notice will always be up to date.
Steps to Customize WordPress Footer
Before proceeding with the steps outlined in theprocedure below, you should make a backup copy of your WordPress footer. If your WordPress is installed in the root directory (usually public_html) with the default theme, then the footer (the file named footer.php) is located at
public_html/wp-content/themes/default/footer.php
If you are using a theme other than the default then you should navigate to that theme to find your correct footer.php file. It is always a good idea to make a backup of any file you intend to edit so that if you make a mistake you can upload the backup and keep your site or blog in working order. While the steps below are based on the default theme - WordPress Default 1.6 by Michael Heilemann, they should apply to any theme you might have installed.
- Log on to your Wordpress administration area as usual.
- Click on the Presentation tab - the one I circled in Red as shown in the image below and then click on the Theme Editor - the one I pointed to with a red arrow in the image below.

- The theme editor will open as shown in the image below.

Look towards the right of the screen and you’ll see a file named footer. In the image above, it’s the very last file - the one I circled in red.
- Click on the footer as shown in the image above and the footer.php file will be loaded into the Theme Editor as shown in the image below.

Look for the<p> and the corresponding </p> tag in the footer file as shown marked with red arrow in the image above. We are going to insert the code
<br />Copyright © <?php echo(date(Y)); ?>
just before the </p> tag. To do that copy the above code and paste it just before the </p> tag in your footer file. Click on the Update File button located near the bottom of your screen and you should see a message that the file has been updated and you are done.
Now if you visit your website with a browser, at the very bottom of your page, you should read the notice
Copyright 2008
And when the year changes to 2009, the above notice will automatically change to Copyright 2009 and so on.
You can follow the above procedure to customize your footer any way you like. The important thing to remember is that most themes limit the footer to 2 or 3 lines, so if you put in too many lines while customizing your text will overflow and it won’t be very pretty. There are ways to get around that which I’ll discuss some other time.
Stumble it!
Subscribe to my Feed in a reader
Posted by Gurmit in CategoryWordpress | No Comments »