Adding Links To Your Footer

This question came up in a discussion group I belong to on IM Faceplate.
There will be variations on how to apply these steps depending on the theme you use and whether or not there are widgets built into it. The two latest default themes for WordPress (Twenty Ten and Twenty Eleven) both have that capability.
For this example I will use the new Twenty Eleven theme. Your theme may be slightly different but adding the links will be similar.
First you will need to create the pages on your blog for both of those items and get the URL of each page.
Go to your dashboard and click appearance then editor.

Then to the right select Footer (footer.php).

This will open up the file footer.php so that you can edit it.
Before you do anything copy and paste the whole file to a notepad or equivalent so that if you make a mistake you can replace the bad file with the original file.

You want to look at what text is where on your footer so that you can see where you want to add your links. In the case of the Twenty Eleven theme it would be right below where it reads “Proudly powered by WordPress | Theme: Twenty Eleven.”
The place you want to add these links may vary depending on the theme but once you know approximately where you can use that to find the proper starting point.
That code looks like this
<a href="http://wordpress.org/" rel="generator">Proudly powered by WordPress</a><span class="sep"> | </span><?php printf( __( 'Theme: %1$s.', 'twentyeleven' ), 'Twenty Eleven' ); ?>
After the closing php tag ?> hit return and add a line with the links you wish to use in appropriate a href format such as
<p><a href="affiliateurl">Affiliate TOS</a> - <a href="privacyurl">Privacy Policy </a></p>
With affiliate url and privacy url being the location of those two pages.
Your questions and comments are always welcomed.
About the author
|
Mike Paetzold got started blogging in 2003 and has become an expert on using WordPress. He has become known as The WordPress Guy. After being an under ground niche marketer using his blogs he has surfaced to share some of the ways he uses blogs to enter various niches profitably. If you would like help in building your business check out my coaching offer. |














