• So I was wondering if there is a way (hopefully a plugin) to change my wordpress footer for a specific page. I don’t want to make a .php page myself and change the footer in the .php file because my client isn’t very computer savvy and needs to be able to edit this data themselves in the WP admin. If anyone has any suggestions on this I would appreciate it!

Viewing 1 replies (of 1 total)
  • -You would first have to make a new .php file.
    -Name it something like footer2.php
    -On the page you want to have that footer, use this code <?php include(TEMPLATEPATH."/footer2.php");?> instead of <?php get_footer(); ?>
    -Just copy the EXACT content of the footer.php to the footer2.php file and edit JUST THE WORDS! Don’t edit any div classes, tables, etc. or it will throw off the entire layout.

    That is the only way I can think of…to my knowledge, there is no plugin that will allow you to have different footers.

Viewing 1 replies (of 1 total)
  • The topic ‘Customizing the footer depending on page?’ is closed to new replies.