Different footer for home page
-
I know this topic has been covered extensively, but I can’t seem to make it work. I am using the twenty eleven theme (reconfigured obviously).
I want to make a different footer for the home page:
All I want to do is remove the “home” button on the left for the home page. I created a new footer called “footer-home.php” and removed the link in question.
Here is what I put into the index.php page:
<?php
if ( is_home() ) :
get_footer(‘home’);
else :
get_footer();
endif;
?>Where am I going wrong? Any help would be greatly appreciated.
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Different footer for home page’ is closed to new replies.