Having Multiple Footers in wordpress

Sometimes I like to have multiple footers for a site, or at least one for the homepage and one for the rest of the site. Fortunetly, wordpress makes this really easy to do.

WordPress has a special template tag for including them into your theme:

This function will accept only one parameter, a string, which works like the sidebar
function. Used without a parameter it will fetch the footer.php file and insert it.

So let’s say I want to have one footer for the homepage and then one for the rest of the site. I am going to use footer.php for the homepage and then create a second for the rest of the site. You could do it however you want.

First step, copy the footer.php file and rename it footer-interior.php. Now make the changes to the file that you want for the footer and upload it back to your site.

So now we need to call our interior footer. We call it like this. < ?php get_footer("interior"); ?>

The get_footer() template tag will retrieve the theme files “footer-interior.php” .

Simple as that.

* Don’t forget the quotes or it will not work.

Setting up Rel Author

By Dave Fogel | May 30, 2013

We might be a little late on this one, but it is worth setting up your rel author tags on Google plus.  Google is very much looking at this type of information for rankings now, so it makes sense to get it done. There are several places to learn how to do this.  Here is…

Adding A Featured Image To A Page In Genesis

By Dave Fogel | May 6, 2013

After looking around the web for a good tutorial, I really couldn’t find what that accomplished what I was looking to do. It sounds simple. I want to add a featured image to a page in Genesis. No problem right? Not exactly. Genesis doesn’t work like a normal wordpress site, but then if you are…

Disable Auto Format in wordpress

By Dave Fogel | August 15, 2012

This is a great trick I found today while working on a problem for a client. What was happening is that wordpress was wrapping her image in paragraph tags and causing it not to float right with text wrapping around it. The solution was to add this to the functions.php file. (note, make sure you…

Posted in

Dave Fogel

Leave a Comment